python3dll.c 134 Bytes
Newer Older
Antoine Pitrou's avatar
Antoine Pitrou committed
1 2 3 4 5 6 7 8
#include <windows.h>

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