From a1ebdbddb3e079bf9d3b00d2f25483b6b2cf3b9c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 5 May 1997 22:18:50 +0000 Subject: [PATCH] Use Python.h, not allobjects.h. Don't call initall() (Experimental incompatible change!!!!!!) --- PC/dl_nt.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/PC/dl_nt.c b/PC/dl_nt.c index 16b93192a07..e80c3cfd8b2 100644 --- a/PC/dl_nt.c +++ b/PC/dl_nt.c @@ -10,10 +10,8 @@ forgotten) from the programmer. #include "windows.h" /* NT and Python share these */ -#undef INCREF -#undef DECREF #include "config.h" -#include "allobjects.h" +#include "Python.h" HMODULE PyWin_DLLhModule = NULL; @@ -25,7 +23,7 @@ BOOL WINAPI DllMain (HANDLE hInst, { case DLL_PROCESS_ATTACH: PyWin_DLLhModule = hInst; - initall(); + //initall(); break; case DLL_PROCESS_DETACH: break;