Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: bc7a130f90e34514bd2b833f9bc9f16001caeb38 authored by Larry Hastings on 23 January 2018, 13:49:45 UTC
Whoops, missed checking in version bump.
Tip revision: bc7a130
python3dll.c
#include <windows.h>

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