Staging
v0.8.1
Revision 7574a1a8916639075dce3534aae8a54e977e06e9 authored by Zachary Ware on 11 February 2018, 19:56:57 UTC, committed by GitHub on 11 February 2018, 19:56:57 UTC
(cherry picked from commit 28607e0dd9417ce44a109980ffd60697c1afdea0)
1 parent 9d8c24b
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