Release 941122
[wine/multimedia.git] / include / winpos.h
blob837a5b3d9dc9adf2aeb636297178141b81ff85e0
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 HWND hwndParent;
19 WINDOWPOS winPos[1];
20 } DWP;
22 #endif /* WINPOS_H */