mirror of
https://github.com/python/cpython
synced 2024-11-02 12:55:22 +00:00
d59c64c49f
svn+ssh://pythondev@svn.python.org/python/trunk ........ r59237 | facundo.batista | 2007-11-30 18:15:25 +0100 (Fri, 30 Nov 2007) | 4 lines Reordering of __new__ to minimize isinstance() calls to most used types. Thanks Mark Dickinson. ........ r59238 | christian.heimes | 2007-11-30 20:18:08 +0100 (Fri, 30 Nov 2007) | 6 lines Removed or replaced some more deprecated preprocessor macros. Moved the _DEBUG and NDEBUG macros to two new property files. Fixed #1527 Problem with static libs on Windows Updated README.txt ........
40 lines
909 B
C
40 lines
909 B
C
/*
|
|
|
|
Entry point for the Windows NT DLL.
|
|
|
|
About the only reason for having this, is so initall() can automatically
|
|
be called, removing that burden (and possible source of frustration if
|
|
forgotten) from the programmer.
|
|
|
|
*/
|
|
|
|
#include "Python.h"
|
|
#include "windows.h"
|
|
|
|
#ifdef Py_ENABLE_SHARED
|
|
char dllVersionBuffer[16] = ""; // a private buffer
|
|
|
|
// Python Globals
|
|
HMODULE PyWin_DLLhModule = NULL;
|
|
const char *PyWin_DLLVersionString = dllVersionBuffer;
|
|
|
|
|
|
BOOL WINAPI DllMain (HANDLE hInst,
|
|
ULONG ul_reason_for_call,
|
|
LPVOID lpReserved)
|
|
{
|
|
switch (ul_reason_for_call)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
PyWin_DLLhModule = hInst;
|
|
// 1000 is a magic number I picked out of the air. Could do with a #define, I spose...
|
|
LoadString(hInst, 1000, dllVersionBuffer, sizeof(dllVersionBuffer));
|
|
//initall();
|
|
break;
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
#endif /* Py_ENABLE_SHARED */
|