Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16889
Modified Files:
win32gui.i
Log Message:
Add AnimateWindow and expose 'error' directly from here too.
Index: win32gui.i
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/win32gui.i,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** win32gui.i 12 Sep 2004 22:42:25 -0000 1.49
--- win32gui.i 24 Sep 2004 06:39:15 -0000 1.50
***************
*** 105,108 ****
--- 105,109 ----
PyEval_InitThreads(); /* Start the interpreter's thread-awareness */
PyDict_SetItemString(d, "dllhandle", PyLong_FromVoidPtr(g_dllhandle));
+ PyDict_SetItemString(d, "error", PyWinExc_ApiError);
%}
***************
*** 1133,1136 ****
--- 1134,1144 ----
%native(FlashWindowEx) PyFlashWindowEx;
+ // @pyswig |AnimateWindow|Enables you to produce special effects when showing or hiding windows. There are three types of animation: roll, slide, and alpha-blended fade.
+ BOOLAPI AnimateWindow(
+ HWND hwnd, // @pyparm int|hwnd||handle to window
+ DWORD dwTime, // @pyparm int|dwTime||duration of animation
+ DWORD dwFlags // @pyparm int|dwFlags||animation type
+ );
+
// @pyswig int|GetWindowLong|
// @pyparm int|hwnd||
|