Staging
v0.5.1
https://github.com/python/cpython
Revision 2c899ccffda92a7f3d4e7a01f14a666504db07b5 authored by Steve Dower on 19 June 2017, 18:32:34 UTC, committed by GitHub on 19 June 2017, 18:32:34 UTC
* Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat
Also fixes bdist_wininst.vcxproj to use correct version in generated name.
1 parent a601fcc
Raw File
Tip revision: 2c899ccffda92a7f3d4e7a01f14a666504db07b5 authored by Steve Dower on 19 June 2017, 18:32:34 UTC
bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat (#2252) (#2281)
Tip revision: 2c899cc
python3dll.c
#include <windows.h>

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