Staging
v0.8.1
Revision 3f6de5a65de1039421915be0f7e102ca4cfe8ae5 authored by Fred Drake on 04 July 2001, 05:18:18 UTC, committed by Fred Drake on 04 July 2001, 05:18:18 UTC
1 parent f0f49d9
Raw File
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>

#include "Python.h"

extern int Py_Main(int, char **);

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