Staging
v0.5.1
https://github.com/python/cpython
Revision cfc6901a7edd64a8571b4573fe93154033618522 authored by Guido van Rossum on 23 November 2013, 16:46:14 UTC, committed by Guido van Rossum on 23 November 2013, 16:46:14 UTC
1 parent e50240c
Raw File
Tip revision: cfc6901a7edd64a8571b4573fe93154033618522 authored by Guido van Rossum on 23 November 2013, 16:46:14 UTC
Add news about pdb fix for yield[from].
Tip revision: cfc6901
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