Release 0.3.0
[wine] / include / dce.h
1 /*
2  * USER DCE definitions
3  *
4  * Copyright 1993 Alexandre Julliard
5  */
6
7 #ifndef DCE_H
8 #define DCE_H
9
10 #include "windows.h"
11
12 typedef struct tagDCE
13 {
14     HANDLE     hNext;
15     HWND       hwndCurrent;
16     HDC        hdc;
17     BYTE       flags;
18     BOOL       inUse;
19     WORD       xOrigin;
20     WORD       yOrigin;
21 } DCE;
22
23
24 #endif  /* DCE_H */