mirror of https://github.com/tongzx/nt5src
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.
38 lines
820 B
38 lines
820 B
#ifdef WIN95
|
|
|
|
#include <windows.h>
|
|
//#include <version.h>
|
|
#include "verinfo.h"
|
|
|
|
#undef MANREVISION
|
|
#undef VERSIONSTR
|
|
|
|
#define MANREVISION 86
|
|
#define VERSIONSTR "4.86.00." BUILD_NUMBER_STR "\0"
|
|
|
|
#define VERSIONNAME "ddrawex.dll\0"
|
|
|
|
#ifdef DEBUG
|
|
#define VERSIONDESCRIPTION "Microsoft DirectDrawEx Debug\0"
|
|
#else
|
|
#define VERSIONDESCRIPTION "Microsoft DirectDrawEx\0"
|
|
#endif
|
|
#define VERSIONTYPE VFT_DLL
|
|
#define VERSIONSUBTYPE VFT2_UNKNOWN
|
|
|
|
#include "verinfo.ver"
|
|
|
|
#else //winnt:
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Direct Draw Ex"
|
|
#define VER_INTERNALNAME_STR "ddrawex"
|
|
|
|
#include "common.ver"
|
|
|
|
|
|
#endif
|