Merged revisions 78818 via svnmerge from
[python/dscho.git] / PC / WinMain.c
blobe439bed9ed113794118d34b80d8ad5068ed16aa8
1 /* Minimal main program -- everything is loaded from the library. */
3 #include "Python.h"
5 #define WIN32_LEAN_AND_MEAN
6 #include <windows.h>
8 int WINAPI wWinMain(
9 HINSTANCE hInstance, /* handle to current instance */
10 HINSTANCE hPrevInstance, /* handle to previous instance */
11 LPWSTR lpCmdLine, /* pointer to command line */
12 int nCmdShow /* show state of window */
15 return Py_Main(__argc, __wargv);