Source code of Windows XP (NT5)
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
862 B

  1. #ifndef DEBUG
  2. #ifdef _DEBUG
  3. #define DEBUG
  4. #endif
  5. #endif
  6. #ifdef WIN95
  7. #include <windows.h>
  8. #include "verinfo.h"
  9. #define VERSIONNAME "AMSetup.exe\0"
  10. #ifdef DEBUG
  11. #define VERSIONDESCRIPTION "Windows Application Manager Setup Debug\0"
  12. #else
  13. #define VERSIONDESCRIPTION "Windows Application Manager Setup\0"
  14. #endif
  15. #define VERSIONTYPE VFT_DLL
  16. #define VERSIONSUBTYPE VFT2_UNKNOWN
  17. #include "verinfo.ver"
  18. #else // WinNT
  19. #include <windows.h>
  20. #include <ntverp.h>
  21. #define VER_FILETYPE VFT_DLL
  22. #define VER_FILESUBTYPE VFT2_UNKNOWN
  23. #ifdef DEBUG
  24. #define VER_FILEDESCRIPTION_STR "Windows Application Manager Setup Debug"
  25. #else
  26. #define VER_FILEDESCRIPTION_STR "Windows Application Manager Setup"
  27. #endif
  28. #define VER_INTERNALNAME_STR "AMSetup.exe"
  29. #include "common.ver"
  30. #endif