Staging
v0.5.1
https://github.com/python/cpython
Revision 8c3bc862fa8e129538e4d519b3aa6c827b50faab authored by Amaury Forgeot d'Arc on 14 June 2008, 09:44:41 UTC, committed by Amaury Forgeot d'Arc on 14 June 2008, 09:44:41 UTC
explicitely disable the use of Windows XP themes when compiling tk.
This is also consistent with the WINVER=0x0500 option.
1 parent d25cdc3
Raw File
Tip revision: 8c3bc862fa8e129538e4d519b3aa6c827b50faab authored by Amaury Forgeot d'Arc on 14 June 2008, 09:44:41 UTC
Since python2.6 must run on Windows 2000,
Tip revision: 8c3bc86
empty.c
#include <windows.h>
int __stdcall
WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
    return 0;
}
back to top