Staging
v0.8.1
https://github.com/python/cpython
Revision 530712625bac0cb8b507746406163b66f2d36c49 authored by Victor Stinner on 10 May 2011, 22:36:28 UTC, committed by Victor Stinner on 10 May 2011, 22:36:28 UTC
1 parent 1eb4f28
Raw File
Tip revision: 530712625bac0cb8b507746406163b66f2d36c49 authored by Victor Stinner on 10 May 2011, 22:36:28 UTC
Issue #11169: compileall module uses repr() to format filenames and paths to
Tip revision: 5307126
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