Staging
v0.5.1
https://github.com/python/cpython
Revision 9f3f0931cfc58498086d287226650599a97412bb authored by Michael Selik on 31 January 2019, 08:47:53 UTC, committed by Raymond Hettinger on 31 January 2019, 08:47:53 UTC
1 parent a1f9a33
Raw File
Tip revision: 9f3f0931cfc58498086d287226650599a97412bb authored by Michael Selik on 31 January 2019, 08:47:53 UTC
bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)
Tip revision: 9f3f093
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