Staging
v0.5.1
https://github.com/python/cpython
Revision ed0201805c036e4bc26670ec7ccffefb8e219f78 authored by Miss Islington (bot) on 21 November 2020, 04:34:55 UTC, committed by GitHub on 21 November 2020, 04:34:55 UTC
(cherry picked from commit aa3a3521cef3998d4f9e7f7ff721163b6e3e5f39)
Co-authored-by: Quentin Hibon <qh.public@yahoo.com>
1 parent c963da2
Raw File
Tip revision: ed0201805c036e4bc26670ec7ccffefb8e219f78 authored by Miss Islington (bot) on 21 November 2020, 04:34:55 UTC
bpo-42419: Correct 'deprecatations' is What's New 3.9 (GH-23421) (GH-23435)
Tip revision: ed02018
python3dll.c
#include <windows.h>

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