This commit was manufactured by cvs2svn to create tag
[python/dscho.git] / PC / WinMain.c
blob7ee1ad69f3e1fcbcac97839f78ff47cf2c8c636c
1 /* Minimal main program -- everything is loaded from the library. */
3 #define WIN32_LEAN_AND_MEAN
4 #include <windows.h>
6 #include "Python.h"
8 extern int Py_Main(int, char **);
10 int WINAPI WinMain(
11 HINSTANCE hInstance, /* handle to current instance */
12 HINSTANCE hPrevInstance, /* handle to previous instance */
13 LPSTR lpCmdLine, /* pointer to command line */
14 int nCmdShow /* show state of window */
17 return Py_Main(__argc, __argv);