Staging
v0.5.1
Revision d9792a0f187332d10fac697157ec04613c9e37f9 authored by Terry Jan Reedy on 13 June 2016, 04:41:53 UTC, committed by Terry Jan Reedy on 13 June 2016, 04:41:53 UTC
1 parent 0c9ad59
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 wWinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPWSTR lpCmdLine,         /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __wargv);
}
back to top