Release 941017
[wine/gsoc-2012-control.git] / include / winpos.h
blob1353f92a408137154cf5532c8473d4e0cf3401f9
1 /*
2 * *DeferWindowPos() structure and definitions
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef WINPOS_H
8 #define WINPOS_H
10 #define DWP_MAGIC 0x5057 /* 'WP' */
12 typedef struct
14 WORD actualCount;
15 WORD suggestedCount;
16 WORD valid;
17 WORD wMagic;
18 WINDOWPOS winPos[1];
19 } DWP;
21 #endif /* WINPOS_H */