Staging
v0.8.1
Revision 8b219694a2682a13854790a7c1de566b922a68b2 authored by Moshe Zadka on 31 March 2001, 13:23:19 UTC, committed by Moshe Zadka on 31 March 2001, 13:23:19 UTC
- mmap on windows creates a mapping without a name when tagname isn't
  specified
1 parent 175a46d
Raw File
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>

#include "Python.h"

extern int Py_Main(int, char **);

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