1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
/* wvWare
* Copyright (C) Caolan McNamara, Dom Lachowicz, and others
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include "wv.h"
/*
Released under GPL, written by Caolan.McNamara@ul.ie.
Copyright (C) 1998,1999
Caolan McNamara
Real Life: Caolan McNamara * Doing: MSc in HCI
Work: Caolan.McNamara@ul.ie * Phone: +353-86-8790257
URL: http://skynet.csn.ul.ie/~caolan * Sig: an oblique strategy
How would you have done it?
*/
/*
returns 1 for not an ole doc
2 ole but not word doc
-1 for an error of some unknown kind
0 on success
*/
void
usage (void)
{
fprintf (stderr, "Usage: wvVersion filename.doc\n");
exit (-1);
}
int
main (int argc, char *argv[])
{
FILE *input;
int ret;
wvParseStruct ps;
if (argc < 2)
usage ();
input = fopen (argv[1], "rb");
if (!input)
{
fprintf (stderr, "Failed to open %s\n", argv[1]);
return (-1);
}
fclose (input);
wvInit ();
ret = wvInitParser (&ps, argv[1]);
if (ret == -1)
{
fprintf (stderr,
"%s couldn't be opened as any known word document\n",
argv[1]);
return -1;
}
ret = wvQuerySupported (&ps.fib, NULL);
printf ("Version: ");
switch (ret & 0x7fff)
{
case WORD8:
printf ("word8 or higher");
break;
case WORD7:
printf ("word7");
break;
case WORD6:
printf ("word6");
break;
case WORD5:
printf ("word5");
break;
case WORD2:
printf ("word2 (maybe)");
break;
default:
printf ("unknown msword version");
break;
}
printf (", Encrypted: ");
if (ret & 0x8000)
printf ("Yes\n");
else
printf ("No\n");
wvOLEFree (&ps);
return 0;
}
|