4 * Copyright (C) 2001 Ove Kaaven
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_DCIDDI_H
22 #define __WINE_DCIDDI_H
28 /* DCI Command Escape */
29 #define DCICOMMAND 3075
30 #define DCI_VERSION 0x0100
32 #define DCICREATEPRIMARYSURFACE 1
33 #define DCICREATEOFFSCREENSURFACE 2
34 #define DCICREATEOVERLAYSURFACE 3
35 #define DCIENUMSURFACE 4
40 #define DCI_FAIL_GENERIC -1
41 #define DCI_FAIL_UNSUPPORTEDVERSION -2
42 #define DCI_FAIL_INVALIDSURFACE -3
43 #define DCI_FAIL_UNSUPPORTED -4
46 typedef int DCIRVAL
; /* DCI callback return type */
48 /*****************************************************************************
49 * Escape command structures
51 typedef struct _DCICMD
{
59 typedef struct _DCISURFACEINFO
{
68 ULONG_PTR dwOffSurface
;
74 DCIRVAL (CALLBACK
*BeginAccess
)(LPVOID
, LPRECT
);
75 void (CALLBACK
*EndAccess
)(LPVOID
);
76 void (CALLBACK
*DestroySurface
)(LPVOID
);
77 } DCISURFACEINFO
, *LPDCISURFACEINFO
;
83 #endif /* __WINE_DCIDDI_H */