Staging
v0.5.1
https://github.com/python/cpython
Revision d867a2cc211b8c18da797721631af5151596eb02 authored by Jeremy Hylton on 16 October 2000, 20:41:38 UTC, committed by Jeremy Hylton on 16 October 2000, 20:41:38 UTC
1 parent 1a64050
Raw File
Tip revision: d867a2cc211b8c18da797721631af5151596eb02 authored by Jeremy Hylton on 16 October 2000, 20:41:38 UTC
revise xml comment
Tip revision: d867a2c
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>

#include "Python.h"

extern int Py_Main(int, char **);

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