Staging
v0.5.1
https://github.com/python/cpython
Revision fa38b3ee749388386914a6584b4c7d97aa474abe authored by cvs2svn on 22 December 1998, 21:43:35 UTC, committed by cvs2svn on 22 December 1998, 21:43:35 UTC
1 parent 45d2ae5
Raw File
Tip revision: fa38b3ee749388386914a6584b4c7d97aa474abe authored by cvs2svn on 22 December 1998, 21:43:35 UTC
This commit was manufactured by cvs2svn to create tag 'r152b1'.
Tip revision: fa38b3e
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