Staging
v0.8.1
https://github.com/python/cpython
Revision 2d34f41bee54f82a3cc3d7da47af05b4227300bd authored by Georg Brandl on 27 October 2013, 08:22:59 UTC, committed by Georg Brandl on 27 October 2013, 08:22:59 UTC
1 parent 325a1c2
Raw File
Tip revision: 2d34f41bee54f82a3cc3d7da47af05b4227300bd authored by Georg Brandl on 27 October 2013, 08:22:59 UTC
Bump to 3.3.3rc1.
Tip revision: 2d34f41
python3dll.c
#include <windows.h>

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