Staging
v0.5.1
https://github.com/python/cpython
Revision 38db34abab5ad6edd1d3696ee0f2255a00fe153d authored by Ned Deily on 31 October 2016, 23:48:38 UTC, committed by Ned Deily on 31 October 2016, 23:48:38 UTC
1 parent 5396257
Raw File
Tip revision: 38db34abab5ad6edd1d3696ee0f2255a00fe153d authored by Ned Deily on 31 October 2016, 23:48:38 UTC
Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j.
Tip revision: 38db34a
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