Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 8f13ff959ae43fb6b8217845b2945779fe693b84 authored by Miss Islington (bot) on 04 September 2020, 09:55:25 UTC
bpo-41700: Skip test if the locale is not supported (GH-22081) (GH-22085)
Tip revision: 8f13ff9
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