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
/
winpos.h
blob
1353f92a408137154cf5532c8473d4e0cf3401f9
1
/*
2
* *DeferWindowPos() structure and definitions
3
*
4
* Copyright 1994 Alexandre Julliard
5
*/
6
7
#ifndef WINPOS_H
8
#define WINPOS_H
9
10
#define DWP_MAGIC 0x5057
/* 'WP' */
11
12
typedef
struct
13
{
14
WORD actualCount
;
15
WORD suggestedCount
;
16
WORD valid
;
17
WORD wMagic
;
18
WINDOWPOS winPos
[
1
];
19
}
DWP
;
20
21
#endif
/* WINPOS_H */