Staging
v0.5.1
https://github.com/python/cpython
Revision 2589ee3e2b8726f41a2712ee035219d2a9696876 authored by Raymond Hettinger on 17 November 2016, 05:34:17 UTC, committed by Raymond Hettinger on 17 November 2016, 05:34:17 UTC
1 parent be1ed8b
Raw File
Tip revision: 2589ee3e2b8726f41a2712ee035219d2a9696876 authored by Raymond Hettinger on 17 November 2016, 05:34:17 UTC
Minor touch-ups to the random module examples
Tip revision: 2589ee3
python3dll.c
#include <windows.h>

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