Rev | Line | |
---|
[4] | 1 | /* $Id: dc.h,v 1.1 1999-05-24 20:19:10 ktk Exp $ */
|
---|
| 2 |
|
---|
| 3 | /*
|
---|
| 4 | * GDI Device Context function prototypes
|
---|
| 5 | *
|
---|
| 6 | * Copyright 1994 Alexandre Julliard
|
---|
| 7 | *
|
---|
| 8 | */
|
---|
| 9 |
|
---|
| 10 | #ifndef __WINE_DC_H
|
---|
| 11 | #define __WINE_DC_H
|
---|
| 12 |
|
---|
| 13 | #include "gdi.h"
|
---|
| 14 |
|
---|
| 15 | #define CLIP_INTERSECT 0x0001
|
---|
| 16 | #define CLIP_EXCLUDE 0x0002
|
---|
| 17 | #define CLIP_KEEPRGN 0x0004
|
---|
| 18 |
|
---|
| 19 | extern DC * DC_AllocDC( const DC_FUNCTIONS *funcs );
|
---|
| 20 | extern DC * DC_GetDCPtr( HDC hdc );
|
---|
| 21 | extern void DC_InitDC( DC * dc );
|
---|
| 22 | extern void DC_UpdateXforms( DC * dc );
|
---|
| 23 |
|
---|
| 24 |
|
---|
| 25 | /* objects/clipping.c */
|
---|
| 26 | INT CLIPPING_IntersectClipRect( DC * dc, INT left, INT top,
|
---|
| 27 | INT right, INT bottom, UINT flags );
|
---|
| 28 | INT CLIPPING_IntersectVisRect( DC * dc, INT left, INT top,
|
---|
| 29 | INT right, INT bottom, BOOL exclude );
|
---|
| 30 | extern void CLIPPING_UpdateGCRegion( DC * dc );
|
---|
| 31 |
|
---|
| 32 | #endif /* __WINE_DC_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.