Staging
v0.5.1
https://github.com/python/cpython
Revision 2fd2e867879a7e44c91d43a48b71a59836849f0a authored by Benjamin Peterson on 31 December 2009, 16:28:24 UTC, committed by Benjamin Peterson on 31 December 2009, 16:28:24 UTC
1 parent 91e0db8
Raw File
Tip revision: 2fd2e867879a7e44c91d43a48b71a59836849f0a authored by Benjamin Peterson on 31 December 2009, 16:28:24 UTC
update expat comment
Tip revision: 2fd2e86
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