22 lines
443 B
C
22 lines
443 B
C
/*
|
|
* GDI Device Context function prototypes
|
|
*
|
|
* Copyright 1994 Alexandre Julliard
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINE_DC_H
|
|
#define __WINE_DC_H
|
|
|
|
#include "gdi.h"
|
|
|
|
extern void DC_InitDC( HDC hdc );
|
|
extern BOOL DC_SetupGCForPatBlt( DC * dc, GC gc, BOOL fMapColors );
|
|
extern BOOL DC_SetupGCForBrush( DC * dc );
|
|
extern BOOL DC_SetupGCForPen( DC * dc );
|
|
extern BOOL DC_SetupGCForText( DC * dc );
|
|
|
|
extern const int DC_XROPfunction[];
|
|
|
|
#endif /* __WINE_DC_H */
|