Staging
v0.5.1
https://github.com/python/cpython
Revision 7a5cbc72988aee668816be9d1ef44c0cb4081ff6 authored by Rahul Kumaresan on 14 March 2020, 05:50:24 UTC, committed by GitHub on 14 March 2020, 05:50:24 UTC


Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
1 parent c7ad974
Raw File
Tip revision: 7a5cbc72988aee668816be9d1ef44c0cb4081ff6 authored by Rahul Kumaresan on 14 March 2020, 05:50:24 UTC
bpo-39937: Improve suggestions for removal of getchildren and getiterator in changelog (GH-18937)
Tip revision: 7a5cbc7
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