Staging
v0.5.1
Revision 55679e0ec76ee3b30ca609948f47bb02a8e0a078 authored by Terry Jan Reedy on 18 September 2017, 00:14:21 UTC, committed by GitHub on 18 September 2017, 00:14:21 UTC
1 parent 0efc7c6
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