Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17292
Modified Files:
win32gui.i
Log Message:
Add GetConsoleWindow to winxpgui (technically it exists in win2k, but this
will do for now, especially given the few workaounds using GetConsoleTitle
that exist)
Index: win32gui.i
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/win32gui.i,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** win32gui.i 15 Jan 2008 10:25:16 -0000 1.113
--- win32gui.i 21 Jan 2008 11:12:00 -0000 1.114
***************
*** 7324,7325 ****
--- 7324,7330 ----
%}
%native(EnumPropsEx) PyEnumPropsEx;
+
+ #ifdef WINXPGUI
+ // strictly available in win2kpro, but this will do for now...
+ HWND GetConsoleWindow();
+ #endif
|