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

Last change on this file since 10367 was 10316, checked in by sandervl, 22 years ago

Visible & Clip region changes

File size: 915 bytes
Line 
1/* $Id: win32wmisc.h,v 1.3 2003-11-12 14:10:21 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
34#ifdef __cplusplus
35}
36#endif
Note: See TracBrowser for help on using the repository browser.