Staging
v0.5.1
https://github.com/python/cpython
Revision 112717dd0b08797c49205313164c8ee08965ec8c authored by Neal Norwitz on 24 April 2007, 04:54:24 UTC, committed by Neal Norwitz on 24 April 2007, 04:54:24 UTC
1 parent 6def78a
Raw File
Tip revision: 112717dd0b08797c49205313164c8ee08965ec8c authored by Neal Norwitz on 24 April 2007, 04:54:24 UTC
Fix SF #1703110, Incorrect example for add_password() (use uri, not host)
Tip revision: 112717d
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#include "Python.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