Staging
v0.8.1
https://github.com/python/cpython
Revision 5c28cfdc0caab106dfdff6655b307f5ea1ffca53 authored by Antoine Pitrou on 05 February 2011, 11:53:39 UTC, committed by Antoine Pitrou on 05 February 2011, 11:53:39 UTC
1 parent 8d8f7c5
Raw File
Tip revision: 5c28cfdc0caab106dfdff6655b307f5ea1ffca53 authored by Antoine Pitrou on 05 February 2011, 11:53:39 UTC
Fix entries pertaining to file I/O
Tip revision: 5c28cfd
python3dll.c
#include <windows.h>

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