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

  1. // Application common version header
  2. #include <windows.h>
  3. #include <ntverp.h>
  4. #include <debdlg.h> //debughelper ui
  5. #include <debdlg.dlg> //debughelper ui
  6. /************************************************************\
  7. *
  8. * To get this versioning information for your module,
  9. * include the following lines in your .rc file.
  10. * Include this file for applications.
  11. * There is another (verdll.rcv) for dlls.
  12. *
  13. * #define MODULE_NAME "APPNAME"
  14. * #define MODULE_DESC "Description of the app\0"
  15. * #include <verapp.rcv>
  16. *
  17. \************************************************************/
  18. // Define MODULE_NAME in your .rc file
  19. #ifndef MODULE_NAME
  20. #define MODULE_NAME "TESTAPP"
  21. #endif
  22. #ifndef MODULE_DESC
  23. #define MODULE_DESC "Microsoft OLE/RPC Test Module\0"
  24. #endif
  25. #ifdef VER_PRODUCTNAME_STR
  26. #undef VER_PRODUCTNAME_STR
  27. #endif
  28. #define VER_FILETYPE VFT_APP
  29. #define VER_FILESUBTYPE VFT2_UNKNOWN
  30. #define VER_FILEDESCRIPTION_STR MODULE_DESC
  31. #define VER_INTERNALNAME_STR MODULE_NAME
  32. #define VER_PRODUCTNAME_STR "Microsoft (R) OLE/RPC QA " MODULE_NAME
  33. #include "common.ver"