Staging
v0.8.1
https://github.com/python/cpython
Revision 05ee12153f51d78cc5160d59a01cad7b805f47a0 authored by Miss Islington (bot) on 25 November 2017, 00:07:37 UTC, committed by Mariatta on 25 November 2017, 00:07:37 UTC
(cherry picked from commit f8802d80b32dbc64f9e0e72270695d24ac50e246)
1 parent 7b909a9
Raw File
Tip revision: 05ee12153f51d78cc5160d59a01cad7b805f47a0 authored by Miss Islington (bot) on 25 November 2017, 00:07:37 UTC
Asyncion-Dev docs: Fix the reference to sys.excepthook (GH-4414) (GH-4549)
Tip revision: 05ee121
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