Staging
v0.5.1
https://github.com/python/cpython
Revision e76cbc781044ee01b059f3702c580e66266b84c5 authored by Larry Hastings on 18 March 2019, 16:51:26 UTC, committed by Larry Hastings on 18 March 2019, 16:51:26 UTC
1 parent 8daddae
Raw File
Tip revision: e76cbc781044ee01b059f3702c580e66266b84c5 authored by Larry Hastings on 18 March 2019, 16:51:26 UTC
Version bump for 3.4.10.
Tip revision: e76cbc7
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