Staging
v0.5.1
https://github.com/python/cpython
Revision adad9e68013aac166c84ffe4e23f3a5464f41840 authored by Steve Dower on 25 January 2019, 22:59:58 UTC, committed by GitHub on 25 January 2019, 22:59:58 UTC
1 parent 4e02f8f
Raw File
Tip revision: adad9e68013aac166c84ffe4e23f3a5464f41840 authored by Steve Dower on 25 January 2019, 22:59:58 UTC
bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)
Tip revision: adad9e6
python3dll.c
#include <windows.h>

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