summaryrefslogtreecommitdiff
path: root/PC/python_nt.rc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-23 18:42:39 +0000
committerGuido van Rossum <guido@python.org>1996-08-23 18:42:39 +0000
commitb624d570a1b3b434ed928ac62883fb8b4fce07ef (patch)
tree23ba9f978cb5dc41b9b9540c44772125d8480b9d /PC/python_nt.rc
parent813bb1ab804f68d50661894f7410d37801f4f013 (diff)
downloadcpython-b624d570a1b3b434ed928ac62883fb8b4fce07ef.tar.gz
Use MS_DLL_ID and similar changes
Diffstat (limited to 'PC/python_nt.rc')
-rw-r--r--PC/python_nt.rc8
1 files changed, 5 insertions, 3 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc
index 92dc0c6d2e..8ccf1e3569 100644
--- a/PC/python_nt.rc
+++ b/PC/python_nt.rc
@@ -10,6 +10,10 @@
#define PYTHON_VERSION MS_DLL_ID "." PYTHON_API_STRING "\0"
+#ifndef PYTHON_DLL_NAME
+#define PYTHON_DLL_NAME "Python14.dll"
+#endif
+
/////////////////////////////////////////////////////////////////////////////
//
// Version
@@ -32,14 +36,12 @@ BEGIN
BEGIN
BLOCK "000004b0"
BEGIN
- VALUE "CompanyName", "PSA\0"
+ VALUE "CompanyName", "Corporation for National Research Initatives\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