summaryrefslogtreecommitdiffstats
path: root/Include/modsupport.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-09-29 23:29:08 (GMT)
committerGuido van Rossum <guido@python.org>1997-09-29 23:29:08 (GMT)
commitb4cfdfa0776cb547145ffc41d6aff8406d31609e (patch)
tree93c91835daf3a3d1c56991a97619d63577d31c9d /Include/modsupport.h
parent83bd9a9c8c5da22603e77af23d25e412282a2bb6 (diff)
downloadcpython-b4cfdfa0776cb547145ffc41d6aff8406d31609e.zip
cpython-b4cfdfa0776cb547145ffc41d6aff8406d31609e.tar.gz
cpython-b4cfdfa0776cb547145ffc41d6aff8406d31609e.tar.bz2
Removed special Windows defines, at Mark Hammond's request.
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r--Include/modsupport.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h
index 7b1cae8..6545329 100644
--- a/Include/modsupport.h
+++ b/Include/modsupport.h
@@ -92,14 +92,10 @@ extern PyObject *Py_VaBuildValue Py_PROTO((char *, va_list));
*/
#ifdef MS_WINDOWS
-/* Special defines for Windows versions. MS_DLL_ID is the key
- used in the registry.
- The full MS_DLL_VERSION_ID is imbedded in the core DLL, and
- is so installers can determine incremental changes.
-*/
-#define MS_DLL_ID "1.5.0"
-#define MS_DLL_VERSION_ID MS_DLL_ID "." PYTHON_API_STRING
-
+/* Special defines for Windows versions used to live here. Things
+ have changed, and the "Version" is now in a global string variable.
+ Reason for this is that this for easier branding of a "custom DLL"
+ without actually needing a recompile. */
#endif /* MS_WINDOWS */
#ifdef Py_TRACE_REFS