1998-08-08 20:00:49 +00:00
|
|
|
/* Minimal main program -- everything is loaded from the library. */
|
1997-12-10 05:50:18 +00:00
|
|
|
|
|
|
|
#include <windows.h>
|
1998-08-08 19:58:59 +00:00
|
|
|
#include "Python.h"
|
1997-12-10 05:50:18 +00:00
|
|
|
|
|
|
|
extern int Py_Main();
|
|
|
|
|
|
|
|
int WINAPI WinMain(
|
|
|
|
HINSTANCE hInstance, // handle to current instance
|
|
|
|
HINSTANCE hPrevInstance, // handle to previous instance
|
|
|
|
LPSTR lpCmdLine, // pointer to command line
|
|
|
|
int nCmdShow // show state of window
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return Py_Main(__argc, __argv);
|
|
|
|
}
|