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.

47 lines
1.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Icon
  4. //
  5. // Icon with lowest ID value placed first to ensure application icon
  6. // remains consistent on all systems.
  7. #define IDI_DIRECTX 1
  8. IDI_DIRECTX ICON DISCARDABLE "directx.ico"
  9. #include "..\..\bldcfg\dpvcfg.h"
  10. #ifdef WIN95
  11. #include <windows.h>
  12. //#include <version.h>
  13. #include "verinfo.h"
  14. #include "..\..\bldcfg\dpcustrc.h"
  15. #define VERSIONNAME DPVOICE_VERNAME_DPVSETUP_WIN9X
  16. #ifdef DEBUG
  17. #define VERSIONDESCRIPTION DPVOICE_VERINFO_DPVSETUP_DEBUG
  18. #else
  19. #define VERSIONDESCRIPTION DPVOICE_VERINFO_DPVSETUP_RETAIL
  20. #endif
  21. #define VERSIONTYPE VFT_APP
  22. #define VERSIONSUBTYPE VFT2_UNKNOWN
  23. #include "verinfo.ver"
  24. #else // WinNT
  25. #include <windows.h>
  26. #include <ntverp.h>
  27. #include "..\..\bldcfg\dpcustrc.h"
  28. #define VER_FILETYPE VFT_APP
  29. #define VER_FILESUBTYPE VFT2_UNKNOWN
  30. #define VER_FILEDESCRIPTION_STR DPVOICE_VERINFO_DPVSETUP_WINNT
  31. #define VER_INTERNALNAME_STR DPVOICE_VERNAME_DPVSETUP_WINNT
  32. #include "common.ver"
  33. #endif