Staging
v0.5.1
Revision 88db37442238079a2eff4d142e8e94cfddb58e22 authored by Łukasz Langa on 24 November 2020, 16:48:47 UTC, committed by Łukasz Langa on 24 November 2020, 16:48:47 UTC
1 parent 15d42d7
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