source: trunk/src/user32/win32wmisc.h@ 10010

Last change on this file since 10010 was 9598, checked in by sandervl, 23 years ago

Merged Rewind menu control

File size: 965 bytes
Line 
1/* $Id: win32wmisc.h,v 1.2 2003-01-03 16:35:58 sandervl Exp $ */
2/*
3 * Misc. functions for window management
4 *
5 * Copyright 2001 Sander van Leeuwen (sandervl@xs4all.nl)
6 *
7 * Parts based on Wine (windows\mdi.c; windows\win.c)
8 *
9 * Copyright 1994, Bob Amstadt
10 * 1995,1996 Alex Korobka
11 * Copyright 1993, 1994 Alexandre Julliard
12 *
13 * Project Odin Software License can be found in LICENSE.TXT
14 *
15 */
16#include "mdi.h"
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#define get_win_sys_menu( hwnd ) getSysMenu(hwnd)
23
24MDICLIENTINFO *get_client_info( HWND client );
25HMENU WIN32API getSysMenu(HWND hwnd);
26VOID setSysMenu(HWND hwnd,HMENU hMenu);
27void GetWindowRectParent(HWND hwnd, RECT *pRect);
28HWND *WIN_ListChildren( HWND hwnd );
29
30void NC_GetSysPopupPos( HWND hwnd, RECT* rect );
31BOOL NC_DrawSysButton95 (HWND hwnd, HDC hdc, BOOL down);
32INT NC_HandleNCHitTest( HWND hwnd, POINT pt);
33
34HWND WINAPI GetAncestor( HWND hwnd, UINT type );
35
36#ifdef __cplusplus
37}
38#endif
Note: See TracBrowser for help on using the repository browser.