Staging
v0.8.1
Revision 25c9d6aa00a3e3b97c23a7ebab1afb3feb526699 authored by Brett Cannon on 17 August 2008, 22:10:11 UTC, committed by Brett Cannon on 17 August 2008, 22:10:11 UTC
1 parent 313bda1
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