Staging
v0.8.1
Revision 2d2e6be39a06a96e877b13f00acb85b01eb93bca authored by Senthil Kumaran on 10 July 2016, 15:34:21 UTC, committed by Senthil Kumaran on 10 July 2016, 15:34:21 UTC
http.cookie.time2netscape, confirming the netscape cookie format.
1 parent e5fa8b0
Raw File
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