blob: d833aa740ef12cd7801141f6df2d73eb74b4410d [file] [log] [blame]
Guido van Rossumd666eae1997-12-10 05:50:18 +00001/* Minimal main program -- everything is loaded from the library */
2
3#include <windows.h>
4
5extern int Py_Main();
6
7int WINAPI WinMain(
8 HINSTANCE hInstance, // handle to current instance
9 HINSTANCE hPrevInstance, // handle to previous instance
10 LPSTR lpCmdLine, // pointer to command line
11 int nCmdShow // show state of window
12)
13{
14 return Py_Main(__argc, __argv);
15}