Staging
v0.5.1
https://github.com/python/cpython
Revision 5f104d56fa10f88098338b3f1ea74bcbe6924ca9 authored by Hai Shi on 16 March 2020, 17:16:32 UTC, committed by GitHub on 16 March 2020, 17:16:32 UTC
1 parent f6a5850
Raw File
Tip revision: 5f104d56fa10f88098338b3f1ea74bcbe6924ca9 authored by Hai Shi on 16 March 2020, 17:16:32 UTC
bpo-39968: Fix a typo error in get_readline_state() (GH-19028)
Tip revision: 5f104d5
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