Staging
v0.5.1
https://github.com/python/cpython
Revision ac4e5abc788dfd10474fe3b0a6c5c802d3159763 authored by R David Murray on 03 July 2011, 01:03:19 UTC, committed by R David Murray on 03 July 2011, 01:03:19 UTC
Original patch by Nicolas Estibals.  My tweaks to the patch were mostly
style/cosmetic, and adding more tests.
1 parent 623e8b8
Raw File
Tip revision: ac4e5abc788dfd10474fe3b0a6c5c802d3159763 authored by R David Murray on 03 July 2011, 01:03:19 UTC
#12147: make send_message correctly handle Sender and Resent- headers.
Tip revision: ac4e5ab
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI wWinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPWSTR lpCmdLine,         /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __wargv);
}
back to top