https://github.com/python/cpython
Raw File
Tip revision: f0ee3698b19f0c4ee232a7e8886065fecdefb06a authored by Julien Palard on 07 November 2018, 23:11:49 UTC
[2.7] Doc: Make all versions sidebars the same for consistency. (GH-10288).
Tip revision: f0ee369
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI WinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPSTR lpCmdLine,          /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __argv);
}
back to top