[pywin32-checkins] pywin32/win32/src win32gui.i,1.77,1.78
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-03-20 03:10:45
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7290/win32/src Modified Files: win32gui.i Log Message: Add GetMenu Index: win32gui.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32gui.i,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** win32gui.i 11 Jan 2006 00:25:51 -0000 1.77 --- win32gui.i 20 Mar 2006 03:10:38 -0000 1.78 *************** *** 2145,2152 **** #ifndef MS_WINCE ! // @pyswig |SetMenu|Sets the window for the specified window. BOOLAPI SetMenu( HWND hwnd, HMENU hmenu ); #endif // @pyswig HCURSOR|LoadIcon|Loads an icon HICON LoadIcon(HINSTANCE hInst, RESOURCE_ID name); --- 2145,2155 ---- #ifndef MS_WINCE ! // @pyswig |SetMenu|Sets the menu for the specified window. BOOLAPI SetMenu( HWND hwnd, HMENU hmenu ); #endif + // @pyswig |GetMenu|Gets the menu for the specified window. + HMENU GetMenu( HWND hwnd); + // @pyswig HCURSOR|LoadIcon|Loads an icon HICON LoadIcon(HINSTANCE hInst, RESOURCE_ID name); |