Staging
v0.8.1
https://github.com/python/cpython
Revision 270ce7360cbb41dee36866c458319c336be2f996 authored by Serhiy Storchaka on 25 February 2014, 18:00:48 UTC, committed by Serhiy Storchaka on 25 February 2014, 18:00:48 UTC
1 parent f031a6f
Raw File
Tip revision: 270ce7360cbb41dee36866c458319c336be2f996 authored by Serhiy Storchaka on 25 February 2014, 18:00:48 UTC
Fix typo (issue #19619).
Tip revision: 270ce73
python3dll.c
#include <windows.h>

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