 |
GetSystemMenu ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The GetSystemMenu function allows the application to access the window menu (also known as the system menu or the control menu) for copying and modifying. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HMENU GetSystemMenu(
HWND hWnd, // handle to window
BOOL bRevert // reset option
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GetSystemMenu IN user32;
INTEGER hWnd,;
INTEGER bRevert
|
 |
 |
 |
| Parameters: |
 |
hWnd
[in] Handle to the window that will own a copy of the window menu.
bRevert
[in] Specifies the action to be taken. The FALSE means that GetSystemMenu returns a handle to the copy of the window menu currently in use. |
 |
 |
| Return value: |
 |
| If the bRevert parameter is FALSE, the return value is a handle to a copy of the window menu. If the bRevert parameter is TRUE, the return value is NULL. |
 |
 |
| Word Index links for the GetSystemMenu : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-12-09 12:05:15 | | Modified: | 2001-12-09 12:07:34 | Visited in last 7 days: 20 |