Added 'description' class attribute to every command class (to help the
[python/dscho.git] / PC / WinMain.c
blob36aa90353fd0188bc68af4b422f77a5561f22b12
1 /* Minimal main program -- everything is loaded from the library. */
3 #include <windows.h>
4 #include "Python.h"
6 extern int Py_Main();
8 int WINAPI WinMain(
9 HINSTANCE hInstance, // handle to current instance
10 HINSTANCE hPrevInstance, // handle to previous instance
11 LPSTR lpCmdLine, // pointer to command line
12 int nCmdShow // show state of window
15 return Py_Main(__argc, __argv);