Staging
v0.5.1
https://github.com/python/cpython
Revision f0db54a0a1823534606ed5ce5a772365ba694c41 authored by Eric V. Smith on 04 December 2017, 21:58:55 UTC, committed by GitHub on 04 December 2017, 21:58:55 UTC
1 parent 1e2fcac
Raw File
Tip revision: f0db54a0a1823534606ed5ce5a772365ba694c41 authored by Eric V. Smith on 04 December 2017, 21:58:55 UTC
bpo-32214: Implement PEP 557: Data Classes (#4704)
Tip revision: f0db54a
python3dll.c
#include <windows.h>

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