Staging
v0.5.1
Revision 57f15afbc0a6117e2e62cee8971014847e6ff32d authored by Greg Ward on 11 May 2004, 01:33:04 UTC, committed by Greg Ward on 11 May 2004, 01:33:04 UTC
avoid breaking the build on MkLinux (Linux 2.0).
1 parent bea27f3
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