From: Guido van Rossum Date: Mon, 5 May 1997 22:18:50 +0000 (+0000) Subject: Use Python.h, not allobjects.h. X-Git-Tag: v1.5a1~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1ebdbddb3e079bf9d3b00d2f25483b6b2cf3b9c;p=python Use Python.h, not allobjects.h. Don't call initall() (Experimental incompatible change!!!!!!) --- diff --git a/PC/dl_nt.c b/PC/dl_nt.c index 16b93192a0..e80c3cfd8b 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;