Staging
v0.8.1
Revision 00ac28ac4d06a311fc2386ef921b2603735ffae6 authored by Miss Islington (bot) on 08 January 2020, 15:47:25 UTC, committed by GitHub on 08 January 2020, 15:47:25 UTC
(cherry picked from commit 2e6a8efa837410327b593dc83c57492253b1201e)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1 parent 535a3c4
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