Leaked source code of windows server 2003
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.
 
 
 
 
 
 

39 lines
1.2 KiB

// Application common version header
#include <windows.h>
#include <ntverp.h>
#include <debdlg.h> //debughelper ui
#include <debdlg.dlg> //debughelper ui
/************************************************************\
*
* To get this versioning information for your module,
* include the following lines in your .rc file.
* Include this file for applications.
* There is another (verdll.rcv) for dlls.
*
* #define MODULE_NAME "APPNAME"
* #define MODULE_DESC "Description of the app\0"
* #include <verapp.rcv>
*
\************************************************************/
// Define MODULE_NAME in your .rc file
#ifndef MODULE_NAME
#define MODULE_NAME "TESTAPP"
#endif
#ifndef MODULE_DESC
#define MODULE_DESC "Microsoft OLE/RPC Test Module\0"
#endif
#ifdef VER_PRODUCTNAME_STR
#undef VER_PRODUCTNAME_STR
#endif
#define VER_FILETYPE VFT_APP
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEDESCRIPTION_STR MODULE_DESC
#define VER_INTERNALNAME_STR MODULE_NAME
#define VER_PRODUCTNAME_STR "Microsoft (R) OLE/RPC QA " MODULE_NAME
#include "common.ver"