Staging
v0.8.1
Revision 8425bf817f03949e0f77b9158a6b4d2d22157039 authored by Victor Stinner on 11 February 2014, 09:08:08 UTC, committed by Victor Stinner on 11 February 2014, 09:08:08 UTC
1 parent 7b467db
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