Staging
v0.8.1
https://github.com/python/cpython
Revision 9474d8624202c2197b02ecc8678ce31b8d7bcf2e authored by Fred Drake on 12 February 1999, 22:05:33 UTC, committed by Fred Drake on 12 February 1999, 22:05:33 UTC
1 parent 5761b76
Raw File
Tip revision: 9474d8624202c2197b02ecc8678ce31b8d7bcf2e authored by Fred Drake on 12 February 1999, 22:05:33 UTC
Make sure all HTML pages generated from this section have reasonable
Tip revision: 9474d86
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include <windows.h>
#include "Python.h"

extern int Py_Main();

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