Staging
v0.8.1
Revision 0d93a234790d86a67c592c226070f8a6bf6ba300 authored by Thomas Heller on 30 March 2006, 19:16:15 UTC, committed by Thomas Heller on 30 March 2006, 19:16:15 UTC
1 parent 300269a
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