Staging
v0.5.1
https://github.com/python/cpython
Revision 683beb6c9b3e1526b11f995af606400ddd195e90 authored by Senthil Kumaran on 07 November 2010, 13:10:02 UTC, committed by Senthil Kumaran on 07 November 2010, 13:10:02 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86296 | senthil.kumaran | 2010-11-07 20:57:04 +0800 (Sun, 07 Nov 2010) | 3 lines

  Fix Issue10226 - Clarifying the role of the netloc separator.
........
1 parent 5edac04
Raw File
Tip revision: 683beb6c9b3e1526b11f995af606400ddd195e90 authored by Senthil Kumaran on 07 November 2010, 13:10:02 UTC
Merged revisions 86296 via svnmerge from
Tip revision: 683beb6
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