Staging
v0.8.1
Revision 57ddf78b6b18d9da6f466b4e6da0437c3271196e authored by Victor Stinner on 08 January 2014, 14:21:28 UTC, committed by Victor Stinner on 08 January 2014, 14:21:28 UTC
1 parent 2bcbc14
Raw File
python3dll.c
#include <windows.h>

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