Staging
v0.8.1
Revision 9a81ab107a54b8ca320fb703f7c68e14ccd9d016 authored by Zackery Spytz on 23 March 2020, 13:29:36 UTC, committed by GitHub on 23 March 2020, 13:29:36 UTC
1 parent bace59d
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