Staging
v0.8.1
https://github.com/python/cpython
Revision 2a5da97da67411ce1d953a655574d0e88316bbdd authored by Larry Hastings on 04 February 2018, 23:38:39 UTC, committed by Larry Hastings on 04 February 2018, 23:38:39 UTC
1 parent 71b94e3
Raw File
Tip revision: 2a5da97da67411ce1d953a655574d0e88316bbdd authored by Larry Hastings on 04 February 2018, 23:38:39 UTC
Finalize blurb archive for 3.4.8 (no new blurbs).
Tip revision: 2a5da97
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

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