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.

34 lines
1.4 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. /********************************************************************/
  4. /* */
  5. /* VER.RC */
  6. /* */
  7. /* This RC fragment shows how to define version information in an */
  8. /* internal RC file */
  9. /* */
  10. /* It relies upon both the public WINVER.H and private VERSION.H */
  11. /* Note that WINVER.H is included in VERSION.H */
  12. /* */
  13. /********************************************************************/
  14. /*-----------------------------------------------*/
  15. /* the following lines are specific to this file */
  16. /*-----------------------------------------------*/
  17. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  18. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  19. */
  20. #define VER_FILETYPE VFT_DLL
  21. #define VER_FILESUBTYPE VFT2_UNKNOWN
  22. #define VER_FILEDESCRIPTION_STR "Version Checking and File Installation Libraries\0"
  23. #define VER_INTERNALNAME_STR "version\0"
  24. #define VER_ORIGINALFILENAME_STR "VERSION.DLL"
  25. #include "common.ver"
  26.