Staging
v0.5.1
https://github.com/python/cpython
Revision 90631f9bc5f78ec6cdc2096d5c5ae26e41e5f150 authored by Miss Islington (bot) on 06 July 2019, 22:25:47 UTC, committed by Terry Jan Reedy on 06 July 2019, 22:25:47 UTC
(cherry picked from commit 6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent ad37203
Raw File
Tip revision: 90631f9bc5f78ec6cdc2096d5c5ae26e41e5f150 authored by Miss Islington (bot) on 06 July 2019, 22:25:47 UTC
bpo-37456: Slash ('/') is now part of syntax. (GH-14627) (GH-14628)
Tip revision: 90631f9
python3dll.c
#include <windows.h>

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