Staging
v0.5.1
https://github.com/python/cpython
Revision dbb958561d57381d5d93958ca75a3e46ab96b42d authored by Georg Brandl on 15 February 2011, 12:41:17 UTC, committed by Georg Brandl on 15 February 2011, 12:41:17 UTC
1 parent 44efc65
Raw File
Tip revision: dbb958561d57381d5d93958ca75a3e46ab96b42d authored by Georg Brandl on 15 February 2011, 12:41:17 UTC
Apply logging SocketHandler doc update by Vinay.
Tip revision: dbb9585
python3dll.c
#include <windows.h>

BOOL WINAPI
DllMain(HINSTANCE hInstDLL,
        DWORD fdwReason,
        LPVOID lpReserved)
{
    return TRUE;
}
back to top