Staging
v0.5.1
https://github.com/python/cpython
Revision 90c9b40c71c26c9b821a61c43f6c1122198b888e authored by Steve Dower on 26 May 2016, 19:17:21 UTC, committed by Steve Dower on 26 May 2016, 19:17:21 UTC
1 parent b1d867f
Raw File
Tip revision: 90c9b40c71c26c9b821a61c43f6c1122198b888e authored by Steve Dower on 26 May 2016, 19:17:21 UTC
Issue #27114: Fix SSLContext._load_windows_store_certs fails with PermissionError
Tip revision: 90c9b40
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI WinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPSTR lpCmdLine,          /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __argv);
}
back to top