python_nt.rc 1.44 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// Resource script for Python core DLL.
// Currently only holds version information.
//
#include "ver.h"
#include "winver.h"

#define MS_WINDOWS
#include "modsupport.h"
#include "patchlevel.h"

11 12
#define MS_DLL_ID "1.5.0"

13 14
#define PYTHON_VERSION MS_DLL_ID "." PYTHON_API_STRING "\0"

15
#ifndef PYTHON_DLL_NAME
16
#define PYTHON_DLL_NAME "Python15.dll"
17 18
#endif

19 20 21 22 23 24
// String Tables
STRINGTABLE DISCARDABLE
BEGIN
	1000,	MS_DLL_ID
END

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
 FILEVERSION 1,0,0,1
 PRODUCTVERSION 1,0,0,1
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x40004L
 FILETYPE 0x1L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "000004b0"
        BEGIN
47
            VALUE "CompanyName", "Corporation for National Research Initatives\0"
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
            VALUE "FileDescription", "Python Core\0"
            VALUE "FileVersion", PYTHON_VERSION
            VALUE "InternalName", "Python DLL\0"
            VALUE "LegalCopyright", "Copyright  1991-1996 Stichting Mathematisch Centrum, Amsterdam\0"
            VALUE "OriginalFilename", PYTHON_DLL_NAME "\0"
            VALUE "ProductName", "Python\0"
            VALUE "ProductVersion", PYTHON_VERSION
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x0, 1200
    END
END

/////////////////////////////////////////////////////////////////////////////