Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: bcc9579227578de5dd7f8825d24ba51b618ad3c2 authored by James Gerity on 30 November 2020, 19:08:26 UTC
bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-23532)
Tip revision: bcc9579
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