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.

30 lines
672 B

  1. //
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //
  4. #include <windows.h>
  5. #include <rc_ids.h>
  6. //
  7. // String table
  8. //
  9. STRINGTABLE DISCARDABLE
  10. {
  11. IDS_WRONGUSE, "Surrogate process for registration of DLL's used by SetupAPI"
  12. }
  13. //
  14. // Version resources
  15. //
  16. #include <ntverp.h>
  17. #define VER_FILETYPE VFT_DLL
  18. #define VER_FILESUBTYPE VFT2_UNKNOWN
  19. #ifdef _WIN64
  20. #define VER_FILEDESCRIPTION_STR "SetupAPI 64-bit Surrogate"
  21. #else
  22. #define VER_FILEDESCRIPTION_STR "SetupAPI 32-bit Surrogate"
  23. #endif
  24. #define VER_INTERNALNAME_STR "WOWREG32.EXE"
  25. #define VER_ORIGINALFILENAME_STR "WOWREG32.EXE"
  26. #include <common.ver>