summaryrefslogtreecommitdiff
path: root/PC/python_nt.rc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-23 15:48:14 +0000
committerGuido van Rossum <guido@python.org>1996-08-23 15:48:14 +0000
commitcbc66767c5fe08125d883a1e2432d80f8083649d (patch)
tree842ca0ded80d940c2a049e4d01956466533668d6 /PC/python_nt.rc
parentbc17d299cc1e30661640f6433340d7740a7c05eb (diff)
downloadcpython-git-cbc66767c5fe08125d883a1e2432d80f8083649d.tar.gz
Added dllbase_nt.txt and python_nt.rc;
added notes to readme.txt about NumPy targets; added some symbols to python_nt.def.
Diffstat (limited to 'PC/python_nt.rc')
-rw-r--r--PC/python_nt.rc53
1 files changed, 53 insertions, 0 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc
new file mode 100644
index 0000000000..92dc0c6d2e
--- /dev/null
+++ b/PC/python_nt.rc
@@ -0,0 +1,53 @@
+// 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"
+
+#define PYTHON_VERSION MS_DLL_ID "." PYTHON_API_STRING "\0"
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// 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
+ VALUE "CompanyName", "PSA\0"
+ VALUE "FileDescription", "Python Core\0"
+ VALUE "FileVersion", PYTHON_VERSION
+ VALUE "InternalName", "Python DLL\0"
+ VALUE "LegalCopyright", "Copyright © 1991-1996 Stichting Mathematisch Centrum, Amsterdam\0"
+#ifdef PYTHON_DLL_NAME
+ VALUE "OriginalFilename", PYTHON_DLL_NAME "\0"
+#endif
+ VALUE "ProductName", "Python\0"
+ VALUE "ProductVersion", PYTHON_VERSION
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x0, 1200
+ END
+END
+
+/////////////////////////////////////////////////////////////////////////////