Staging
v0.5.1
https://github.com/python/cpython
Revision 6153604bc700d06c6a280643743c547db7d0d4f6 authored by Georg Brandl on 03 February 2011, 07:46:41 UTC, committed by Georg Brandl on 03 February 2011, 07:46:41 UTC
1 parent e951e91
Raw File
Tip revision: 6153604bc700d06c6a280643743c547db7d0d4f6 authored by Georg Brandl on 03 February 2011, 07:46:41 UTC
Remove lots of spaces within exception message.
Tip revision: 6153604
python3dll.c
#include <windows.h>

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