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 940405
[wine/gsoc-2012-control.git]
/
include
/
mdi.h
blob
b6d179ebb9e44a773063d835af9e02f3560b7ae3
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
}
MDICLIENTINFO
;
32
33
#endif
/* MDI_H */