Skip to content

Commit

Permalink
Use Python.h, not allobjects.h.
Browse files Browse the repository at this point in the history
Don't call initall()  (Experimental incompatible change!!!!!!)
  • Loading branch information
gvanrossum committed May 5, 1997
1 parent db9353e commit a1ebdbd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions PC/dl_nt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -25,7 +23,7 @@ BOOL WINAPI DllMain (HANDLE hInst,
{
case DLL_PROCESS_ATTACH:
PyWin_DLLhModule = hInst;
initall();
//initall();
break;
case DLL_PROCESS_DETACH:
break;
Expand Down

0 comments on commit a1ebdbd

Please sign in to comment.