diff options
author | Guido van Rossum <guido@python.org> | 1997-05-05 22:18:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-05 22:18:50 (GMT) |
commit | a1ebdbddb3e079bf9d3b00d2f25483b6b2cf3b9c (patch) | |
tree | b02b4ff637ceb247fe52515c031c04d20a2c5a60 /PC/dl_nt.c | |
parent | db9353e17dc375dda1a4910c70461dc745894834 (diff) | |
download | cpython-a1ebdbddb3e079bf9d3b00d2f25483b6b2cf3b9c.zip cpython-a1ebdbddb3e079bf9d3b00d2f25483b6b2cf3b9c.tar.gz cpython-a1ebdbddb3e079bf9d3b00d2f25483b6b2cf3b9c.tar.bz2 |
Use Python.h, not allobjects.h.
Don't call initall() (Experimental incompatible change!!!!!!)
Diffstat (limited to 'PC/dl_nt.c')
-rw-r--r-- | PC/dl_nt.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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; |