Staging
v0.5.1
https://github.com/python/cpython
Revision 463753831c1c50a079d04db210bf120dc0a5411c authored by Benjamin Peterson on 10 January 2014, 15:22:40 UTC, committed by Benjamin Peterson on 10 January 2014, 15:22:40 UTC
1 parent cce440f
Raw File
Tip revision: 463753831c1c50a079d04db210bf120dc0a5411c authored by Benjamin Peterson on 10 January 2014, 15:22:40 UTC
fix build when SCHED_SPORADIC is defined (closes #20217)
Tip revision: 4637538
python3dll.c
#include <windows.h>

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