Staging
v0.8.1
Revision 100db0b5841e2e593bcdbf4a31c21c4075268cb5 authored by Miss Islington (bot) on 28 May 2018, 22:38:30 UTC, committed by GitHub on 28 May 2018, 22:38:30 UTC
(cherry picked from commit f9b364fe51ac083e3e423b1e2cefe0e1ad7d9a60)

Co-authored-by: Steve Dower <steve.dower@microsoft.com>
1 parent 7e8819a
Raw File
python3dll.c
#include <windows.h>

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