Staging
v0.5.1
https://github.com/python/cpython
Revision b1d867f14965e2369d31a3fcdab5bca34b4d81b4 authored by Martin Panter on 26 May 2016, 05:28:50 UTC, committed by Martin Panter on 26 May 2016, 05:28:50 UTC
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
1 parent 5db0b33
Raw File
Tip revision: b1d867f14965e2369d31a3fcdab5bca34b4d81b4 authored by Martin Panter on 26 May 2016, 05:28:50 UTC
Issue #27076: Doc, comment and test function name spelling fixes
Tip revision: b1d867f
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI WinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPSTR lpCmdLine,          /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __argv);
}
back to top