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.

49 lines
1.4 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // _SAMPLE_.RC : Defines the version resource for a user-built
  4. // C/C++ Run-Time Library DLL (Dynamic Link Library).
  5. //
  6. /////////////////////////////////////////////////////////////////////////////
  7. #include "winver.h" // extract from windows header
  8. VS_VERSION_INFO VERSIONINFO
  9. FILEVERSION 7,00,0,0
  10. PRODUCTVERSION 7,00,0,0
  11. FILEFLAGSMASK 0x3fL
  12. #ifdef _DEBUG
  13. FILEFLAGS VS_FF_DEBUG
  14. #else
  15. FILEFLAGS 0x0L
  16. #endif
  17. FILEOS VOS_NT_WINDOWS32
  18. FILETYPE VFT_DLL
  19. FILESUBTYPE VFT2_UNKNOWN
  20. BEGIN
  21. BLOCK "StringFileInfo"
  22. BEGIN
  23. BLOCK "040904B0"
  24. BEGIN
  25. VALUE "CompanyName", "Sample Corporation"
  26. VALUE "FileDescription", "User-Generated Microsoft (R) C/C++ Runtime Library"
  27. VALUE "FileVersion", "7.00.0000"
  28. #ifdef _DEBUG
  29. VALUE "InternalName", "_SAMPLD_.DLL"
  30. #else
  31. VALUE "InternalName", "_SAMPLE_.DLL"
  32. #endif
  33. VALUE "LegalCopyright", "Copyright (C) Microsoft Corporation. 1981-2001"
  34. #ifdef _DEBUG
  35. VALUE "OriginalFilename", "_SAMPLD_.DLL"
  36. #else
  37. VALUE "OriginalFilename", "_SAMPLE_.DLL"
  38. #endif
  39. VALUE "ProductName", "Sample Application DLL"
  40. VALUE "ProductVersion", "7.00.0000"
  41. END
  42. END
  43. BLOCK "VarFileInfo"
  44. BEGIN
  45. VALUE "Translation", 0x409, 1200
  46. END
  47. END