Staging
v0.5.1
https://github.com/python/cpython
Revision 0e0cd46227bb3e95cc6395ef514bf13f0d30c668 authored by Ethan Furman on 18 October 2013, 02:34:12 UTC, committed by Ethan Furman on 18 October 2013, 02:34:12 UTC
I'll make sure and include them in future patches.
1 parent 3c97e46
Raw File
Tip revision: 0e0cd46227bb3e95cc6395ef514bf13f0d30c668 authored by Ethan Furman on 18 October 2013, 02:34:12 UTC
Catching up on NEWS entries.
Tip revision: 0e0cd46
python3dll.c
#include <windows.h>

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