Release 951003
[wine/multimedia.git] / include / mdi.h
blobd2d1434ac03597593fc55bcde81eab1098be7998
1 /* MDI.H
3 * Copyright 1994, Bob Amstadt
5 * MDI structure definitions.
6 */
8 #ifndef MDI_H
9 #define MDI_H
11 #include "windows.h"
13 #define MDI_MAXLISTLENGTH 64
14 extern LRESULT MDIClientWndProc(HWND hwnd, UINT message,
15 WPARAM wParam, LPARAM lParam); /* mdi.c */
18 typedef struct
20 HLOCAL next, prev;
21 HWND hwnd;
22 } MDICHILDINFO;
24 typedef struct
26 HMENU hWindowMenu;
27 HLOCAL infoActiveChildren;
28 WORD nActiveChildren;
29 WORD idFirstChild;
30 HWND hwndActiveChild;
31 HWND hwndHitTest;
32 BOOL flagMenuAltered;
33 BOOL flagChildMaximized;
34 RECT rectMaximize;
35 RECT rectRestore;
36 } MDICLIENTINFO;
38 #endif /* MDI_H */