Fix typo in OUTLINETEXTMETRIC definition.
[wine.git] / include / dciddi.h
blob8c430f59c42514ed98cd751c539334c29068ec5a
1 /* DCI driver interface */
3 #ifndef __WINE_DCIDDI_H
4 #define __WINE_DCIDDI_H
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 /* DCI Command Escape */
11 #define DCICOMMAND 3075
12 #define DCI_VERSION 0x0100
14 #define DCICREATEPRIMARYSURFACE 1
15 #define DCICREATEOFFSCREENSURFACE 2
16 #define DCICREATEOVERLAYSURFACE 3
17 #define DCIENUMSURFACE 4
18 #define DCIESCAPE 5
20 /* DCI Errors */
21 #define DCI_OK 0
24 typedef int DCIRVAL; /* DCI callback return type */
26 /*****************************************************************************
27 * Escape command structures
29 typedef struct _DCICMD {
30 DWORD dwCommand;
31 DWORD dwParam1;
32 DWORD dwParam2;
33 DWORD dwVersion;
34 DWORD dwReserved;
35 } DCICMD,*LPDCICMD;
37 #ifdef __cplusplus
38 } /* extern "C" */
39 #endif
41 #endif /* __WINE_DCIDDI_H */