[pywin32-checkins] pywin32/win32/src win32gui.i,1.27,1.28
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-08-27 05:13:50
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1:/tmp/cvs-serv29076 Modified Files: win32gui.i Log Message: Oops - IsIconic->IsChild. Add DeleteObject. Index: win32gui.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32gui.i,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** win32gui.i 27 Aug 2003 04:26:25 -0000 1.27 --- win32gui.i 27 Aug 2003 05:13:46 -0000 1.28 *************** *** 1456,1459 **** --- 1456,1462 ---- #define LR_VGACOLOR LR_VGACOLOR + // pyswig |DeleteObject||Deletes a logical pen, brush, font, bitmap, region, or palette, freeing all system resources associated with the object. After the object is deleted, the specified handle is no longer valid. + BOOLAPI DeleteObject(HANDLE h); // @pyparm int|handle||handle to the object to delete. + // @pyswig int|ImageList_Add|Adds an image or images to an image list. // @rdesc Returns the index of the first new image if successful, or -1 otherwise. *************** *** 2134,2138 **** // @pyswig |IsChild|Tests whether a window is a child window or descendant window of a specified parent window ! BOOL IsIconic( HWND hWndParent, // @pyparm int|hWndParent||handle to parent window HWND hWnd // @pyparm int|hWnd||handle to window to test --- 2137,2141 ---- // @pyswig |IsChild|Tests whether a window is a child window or descendant window of a specified parent window ! BOOL IsChild( HWND hWndParent, // @pyparm int|hWndParent||handle to parent window HWND hWnd // @pyparm int|hWnd||handle to window to test |