Staging
v0.8.1
Revision bd5fdd93a9484accb188bc7ef62d2d1af937149a authored by Fred Drake on 16 July 2003, 14:01:56 UTC, committed by Fred Drake on 16 July 2003, 14:01:56 UTC
1 parent a66b6c1
Raw File
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#include "Python.h"

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);
}
back to top