Staging
v0.8.1
Revision 513352961411e48a0214fe3119f1b951ec2f5216 authored by Georg Brandl on 05 May 2009, 07:55:26 UTC, committed by Georg Brandl on 05 May 2009, 07:55:26 UTC
1 parent 42c66d4
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