repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 941017
[wine/gsoc-2012-control.git]
/
include
/
mdi.h
blob
40f43990b52f11c1224e0cce8cdd45279b07f6d2
1
/* MDI.H
2
*
3
* Copyright 1994, Bob Amstadt
4
*
5
* MDI structure definitions.
6
*/
7
8
#ifndef MDI_H
9
#define MDI_H
10
11
#include
"windows.h"
12
13
#define MDI_MAXLISTLENGTH 64
14
15
typedef
struct
mdi_child_info_s
16
{
17
struct
mdi_child_info_s
*
next
, *
prev
;
18
HWND hwnd
;
19
}
MDICHILDINFO
;
20
21
typedef
struct
22
{
23
HMENU hWindowMenu
;
24
MDICHILDINFO
*
infoActiveChildren
;
25
WORD nActiveChildren
;
26
WORD idFirstChild
;
27
HWND hwndActiveChild
;
28
HWND hwndHitTest
;
29
BOOL flagMenuAltered
;
30
BOOL flagChildMaximized
;
31
RECT rectMaximize
;
32
RECT rectRestore
;
33
}
MDICLIENTINFO
;
34
35
#endif
/* MDI_H */