Staging
v0.8.1
Revision 9649cdd5d4b947fd7356f1c2946509b8a520647d authored by Barry Warsaw on 03 April 2008, 04:10:02 UTC, committed by Barry Warsaw on 03 April 2008, 04:10:02 UTC
1 parent b235500
Raw File
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.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