Release 961013
[wine/multimedia.git] / include / dc.h
blob192c2a31173038ebd3f4bab0232d406acd05ffdd
1 /*
2 * GDI Device Context function prototypes
4 * Copyright 1994 Alexandre Julliard
6 */
8 #ifndef __WINE_DC_H
9 #define __WINE_DC_H
11 #include "gdi.h"
13 #define CLIP_INTERSECT 0x0001
14 #define CLIP_EXCLUDE 0x0002
15 #define CLIP_KEEPRGN 0x0004
17 extern DC * DC_AllocDC( const DC_FUNCTIONS *funcs );
18 extern DC * DC_GetDCPtr( HDC32 hdc );
19 extern void DC_InitDC( DC * dc );
20 extern BOOL32 DC_SetupGCForPatBlt( DC * dc, GC gc, BOOL32 fMapColors );
21 extern BOOL32 DC_SetupGCForBrush( DC * dc );
22 extern BOOL32 DC_SetupGCForPen( DC * dc );
23 extern BOOL32 DC_SetupGCForText( DC * dc );
25 extern const int DC_XROPfunction[];
27 #endif /* __WINE_DC_H */