Staging
v0.8.1
Revision 9bd44d6dab214ab17c5505aa445388ccf8695c87 authored by Serhiy Storchaka on 02 December 2016, 05:58:42 UTC, committed by Serhiy Storchaka on 02 December 2016, 05:58:42 UTC
1 parent 6df26b5
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