mirror of https://github.com/lianthony/NT4.0
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.
35 lines
843 B
35 lines
843 B
|
|
#ifdef WIN16
|
|
|
|
#include <windows.h>
|
|
|
|
// #define OFFICAL // define this for pre-ship versions
|
|
#define FINAL // define this for shipped version.
|
|
|
|
#include <version.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Virtual desktop utility hooks"
|
|
#define VER_INTERNALNAME_STR "TOPHOOK"
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1991-1992"
|
|
#define VER_ORIGINALFILENAME_STR "TOPHOOK.DLL"
|
|
|
|
#include <common.ver>
|
|
|
|
#else
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Virtual Desktop Utility Hooks"
|
|
|
|
#define VER_INTERNALNAME_STR "TOPHOOK.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "TOPHOOK.DLL"
|
|
|
|
#include <common.ver>
|
|
|
|
|
|
#endif /* WIN16 */
|