Staging
v0.5.1
https://github.com/python/cpython
Revision 712bb345d71e5d1774130dcbc0a71051d94ce444 authored by Gregory P. Smith on 30 September 2006, 06:09:07 UTC, committed by Gregory P. Smith on 30 September 2006, 06:09:07 UTC
1 parent c138772
Raw File
Tip revision: 712bb345d71e5d1774130dcbc0a71051d94ce444 authored by Gregory P. Smith on 30 September 2006, 06:09:07 UTC
wording change
Tip revision: 712bb34
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#include "Python.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