1 /* Minimal main program -- everything is loaded from the library. */
3 #define WINDOWS_LEAN_AND_MEAN
8 extern int Py_Main(int, char **);
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
);