Staging
v0.5.1
https://github.com/python/cpython
Revision 497256ba18f4dae8da194b31326d256aab912931 authored by Vinay Sajip on 07 April 2010, 09:40:52 UTC, committed by Vinay Sajip on 07 April 2010, 09:40:52 UTC
1 parent ef7590e
Raw File
Tip revision: 497256ba18f4dae8da194b31326d256aab912931 authored by Vinay Sajip on 07 April 2010, 09:40:52 UTC
Issue #8331: logging: fixed some grammatical errors in documentation.
Tip revision: 497256b
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