Staging
v0.5.1
https://github.com/python/cpython
Revision cccbb9b23db56f32638ef192d73e72e13ddc63b7 authored by Miss Islington (bot) on 19 September 2018, 21:34:14 UTC, committed by Steve Dower on 19 September 2018, 21:34:14 UTC
(cherry picked from commit 76531e2e82319a487d659bc469441bd4b8251608)

Co-authored-by: Steve Dower <steve.dower@microsoft.com>
1 parent c927649
Raw File
Tip revision: cccbb9b23db56f32638ef192d73e72e13ddc63b7 authored by Miss Islington (bot) on 19 September 2018, 21:34:14 UTC
Ignores failure to update lists (GH-9424)
Tip revision: cccbb9b
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