Staging
v0.8.1
https://github.com/python/cpython
Revision f32a5f4acc0bcdde3cd5cbc04e1ff03d5ec00b05 authored by Gregory P. Smith on 13 August 2009, 18:16:54 UTC, committed by Gregory P. Smith on 13 August 2009, 18:16:54 UTC
1 parent 41e9d28
Raw File
Tip revision: f32a5f4acc0bcdde3cd5cbc04e1ff03d5ec00b05 authored by Gregory P. Smith on 13 August 2009, 18:16:54 UTC
unblock merge of 73917, it is needed to fix issue 3392
Tip revision: f32a5f4
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