home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Languages / Python / python-14-src / PC / python_nt.rc < prev    next >
Encoding:
Text File  |  1997-01-17  |  1.3 KB  |  56 lines

  1. // Resource script for Python core DLL.
  2. // Currently only holds version information.
  3. //
  4. #include "ver.h"
  5. #include "winver.h"
  6.  
  7. #define MS_WINDOWS
  8. #include "modsupport.h"
  9. #include "patchlevel.h"
  10.  
  11. #define PYTHON_VERSION MS_DLL_ID "." PYTHON_API_STRING "\0"
  12.  
  13. #ifndef PYTHON_DLL_NAME
  14. #define PYTHON_DLL_NAME "Python14.dll"
  15. #endif
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. //
  19. // Version
  20. //
  21.  
  22. VS_VERSION_INFO VERSIONINFO
  23.  FILEVERSION 1,0,0,1
  24.  PRODUCTVERSION 1,0,0,1
  25.  FILEFLAGSMASK 0x3fL
  26. #ifdef _DEBUG
  27.  FILEFLAGS 0x1L
  28. #else
  29.  FILEFLAGS 0x0L
  30. #endif
  31.  FILEOS 0x40004L
  32.  FILETYPE 0x1L
  33.  FILESUBTYPE 0x0L
  34. BEGIN
  35.     BLOCK "StringFileInfo"
  36.     BEGIN
  37.         BLOCK "000004b0"
  38.         BEGIN
  39.             VALUE "CompanyName", "Corporation for National Research Initatives\0"
  40.             VALUE "FileDescription", "Python Core\0"
  41.             VALUE "FileVersion", PYTHON_VERSION
  42.             VALUE "InternalName", "Python DLL\0"
  43.             VALUE "LegalCopyright", "Copyright ’ 1991-1996 Stichting Mathematisch Centrum, Amsterdam\0"
  44.             VALUE "OriginalFilename", PYTHON_DLL_NAME "\0"
  45.             VALUE "ProductName", "Python\0"
  46.             VALUE "ProductVersion", PYTHON_VERSION
  47.         END
  48.     END
  49.     BLOCK "VarFileInfo"
  50.     BEGIN
  51.         VALUE "Translation", 0x0, 1200
  52.     END
  53. END
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.