Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <version.h> #define Not_VxD #include <vmm.h>
/*-----------------------------------------------*/ /* the following lines are specific to this file */ /*-----------------------------------------------*/
/* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR * and VER_INTERNALNAME_STR must be defined before including COMMON.VER * The strings don't need a '\0', since common.ver has them. */ #define VER_FILETYPE VFT_VXD /* possible values: VFT_UNKNOWN VFT_APP VFT_DLL VFT_DRV VFT_FONT VFT_VXD VFT_STATIC_LIB */
#define VER_FILESUBTYPE UNDEFINED_DEVICE_ID
#define VER_FILEDESCRIPTION_STR "Exception Vector Driver (Version 1.0)" #define VER_INTERNALNAME_STR "EXVector" #define VER_LEGALCOPYRIGHT_YEARS "2000" #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation" VER_LEGALCOPYRIGHT_YEARS #define VER_ORIGINALFILENAME_STR "EXVector.Vxd" #define VER_PRODUCTNAME_STR "Microsoft\256 Device Driver"
#define VER_COMPANYNAME_STR "Microsoft"
#include <common.ver>
|