wined3d: Use CTXUSAGE_RESOURCELOAD for fb->texture reads.
[wine/wine-kai.git] / dlls / gdi32 / mfdrv / metafiledrv.h
blob67c1d66cecb972c607fcc9576e2b945a08330444
1 /*
2 * Metafile driver definitions
4 * Copyright 1996 Alexandre Julliard
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_METAFILEDRV_H
22 #define __WINE_METAFILEDRV_H
24 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "gdi_private.h"
31 /* Metafile driver physical DC */
33 typedef struct
35 HDC hdc;
36 METAHEADER *mh; /* Pointer to metafile header */
37 UINT handles_size, cur_handles;
38 HGDIOBJ *handles;
39 HANDLE hFile; /* Handle for disk based MetaFile */
40 } METAFILEDRV_PDEVICE;
42 #define HANDLE_LIST_INC 20
45 extern BOOL MFDRV_MetaParam0(PHYSDEV dev, short func) DECLSPEC_HIDDEN;
46 extern BOOL MFDRV_MetaParam1(PHYSDEV dev, short func, short param1) DECLSPEC_HIDDEN;
47 extern BOOL MFDRV_MetaParam2(PHYSDEV dev, short func, short param1, short param2) DECLSPEC_HIDDEN;
48 extern BOOL MFDRV_MetaParam4(PHYSDEV dev, short func, short param1, short param2,
49 short param3, short param4) DECLSPEC_HIDDEN;
50 extern BOOL MFDRV_MetaParam6(PHYSDEV dev, short func, short param1, short param2,
51 short param3, short param4, short param5,
52 short param6) DECLSPEC_HIDDEN;
53 extern BOOL MFDRV_MetaParam8(PHYSDEV dev, short func, short param1, short param2,
54 short param3, short param4, short param5,
55 short param6, short param7, short param8) DECLSPEC_HIDDEN;
56 extern BOOL MFDRV_WriteRecord(PHYSDEV dev, METARECORD *mr, DWORD rlen) DECLSPEC_HIDDEN;
57 extern UINT MFDRV_AddHandle( PHYSDEV dev, HGDIOBJ obj ) DECLSPEC_HIDDEN;
58 extern BOOL MFDRV_RemoveHandle( PHYSDEV dev, UINT index ) DECLSPEC_HIDDEN;
59 extern INT16 MFDRV_CreateBrushIndirect( PHYSDEV dev, HBRUSH hBrush ) DECLSPEC_HIDDEN;
61 /* Metafile driver functions */
63 extern BOOL MFDRV_AbortPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
64 extern BOOL MFDRV_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
65 INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
66 extern BOOL MFDRV_BeginPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
67 extern BOOL MFDRV_BitBlt( PHYSDEV devDst, INT xDst, INT yDst, INT width,
68 INT height, PHYSDEV devSrc, INT xSrc, INT ySrc,
69 DWORD rop ) DECLSPEC_HIDDEN;
70 extern BOOL MFDRV_Chord( PHYSDEV dev, INT left, INT top, INT right,
71 INT bottom, INT xstart, INT ystart, INT xend,
72 INT yend ) DECLSPEC_HIDDEN;
73 extern BOOL MFDRV_CloseFigure( PHYSDEV dev ) DECLSPEC_HIDDEN;
74 extern BOOL MFDRV_DeleteObject( PHYSDEV dev, HGDIOBJ obj ) DECLSPEC_HIDDEN;
75 extern BOOL MFDRV_Ellipse( PHYSDEV dev, INT left, INT top,
76 INT right, INT bottom ) DECLSPEC_HIDDEN;
77 extern BOOL MFDRV_EndPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
78 extern INT MFDRV_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT
79 bottom ) DECLSPEC_HIDDEN;
80 extern INT MFDRV_ExtEscape( PHYSDEV dev, INT nEscape, INT cbInput, LPCVOID in_data,
81 INT cbOutput, LPVOID out_data ) DECLSPEC_HIDDEN;
82 extern BOOL MFDRV_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT fillType ) DECLSPEC_HIDDEN;
83 extern INT MFDRV_ExtSelectClipRgn( PHYSDEV dev, HRGN hrgn, INT mode ) DECLSPEC_HIDDEN;
84 extern BOOL MFDRV_ExtTextOut( PHYSDEV dev, INT x, INT y,
85 UINT flags, const RECT *lprect, LPCWSTR str,
86 UINT count, const INT *lpDx ) DECLSPEC_HIDDEN;
87 extern BOOL MFDRV_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
88 extern BOOL MFDRV_FillRgn( PHYSDEV dev, HRGN hrgn, HBRUSH hbrush ) DECLSPEC_HIDDEN;
89 extern BOOL MFDRV_FlattenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
90 extern BOOL MFDRV_FrameRgn( PHYSDEV dev, HRGN hrgn, HBRUSH hbrush, INT x, INT y ) DECLSPEC_HIDDEN;
91 extern INT MFDRV_GetDeviceCaps( PHYSDEV dev , INT cap ) DECLSPEC_HIDDEN;
92 extern INT MFDRV_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT
93 bottom ) DECLSPEC_HIDDEN;
94 extern BOOL MFDRV_InvertRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
95 extern BOOL MFDRV_LineTo( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
96 extern BOOL MFDRV_MoveTo( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
97 extern INT MFDRV_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
98 extern INT MFDRV_OffsetViewportOrg( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
99 extern INT MFDRV_OffsetWindowOrg( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
100 extern BOOL MFDRV_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
101 extern BOOL MFDRV_PatBlt( PHYSDEV dev, INT left, INT top, INT width, INT height,
102 DWORD rop ) DECLSPEC_HIDDEN;
103 extern BOOL MFDRV_Pie( PHYSDEV dev, INT left, INT top, INT right,
104 INT bottom, INT xstart, INT ystart, INT xend,
105 INT yend ) DECLSPEC_HIDDEN;
106 extern BOOL MFDRV_PolyBezier( PHYSDEV dev, const POINT* pt, DWORD count ) DECLSPEC_HIDDEN;
107 extern BOOL MFDRV_PolyBezierTo( PHYSDEV dev, const POINT* pt, DWORD count ) DECLSPEC_HIDDEN;
108 extern BOOL MFDRV_PolyPolygon( PHYSDEV dev, const POINT* pt, const INT* counts,
109 UINT polygons) DECLSPEC_HIDDEN;
110 extern BOOL MFDRV_Polygon( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
111 extern BOOL MFDRV_Polyline( PHYSDEV dev, const POINT* pt,INT count) DECLSPEC_HIDDEN;
112 extern BOOL MFDRV_Rectangle( PHYSDEV dev, INT left, INT top,
113 INT right, INT bottom) DECLSPEC_HIDDEN;
114 extern BOOL MFDRV_RestoreDC( PHYSDEV dev, INT level ) DECLSPEC_HIDDEN;
115 extern BOOL MFDRV_RoundRect( PHYSDEV dev, INT left, INT top,
116 INT right, INT bottom, INT ell_width,
117 INT ell_height ) DECLSPEC_HIDDEN;
118 extern INT MFDRV_SaveDC( PHYSDEV dev ) DECLSPEC_HIDDEN;
119 extern INT MFDRV_ScaleViewportExt( PHYSDEV dev, INT xNum, INT xDenom, INT yNum,
120 INT yDenom ) DECLSPEC_HIDDEN;
121 extern INT MFDRV_ScaleWindowExt( PHYSDEV dev, INT xNum, INT xDenom, INT yNum,
122 INT yDenom ) DECLSPEC_HIDDEN;
123 extern HBITMAP MFDRV_SelectBitmap( PHYSDEV dev, HBITMAP handle ) DECLSPEC_HIDDEN;
124 extern HBRUSH MFDRV_SelectBrush( PHYSDEV dev, HBRUSH handle ) DECLSPEC_HIDDEN;
125 extern BOOL MFDRV_SelectClipPath( PHYSDEV dev, INT iMode ) DECLSPEC_HIDDEN;
126 extern HFONT MFDRV_SelectFont( PHYSDEV dev, HFONT handle, HANDLE gdiFont ) DECLSPEC_HIDDEN;
127 extern HPEN MFDRV_SelectPen( PHYSDEV dev, HPEN handle ) DECLSPEC_HIDDEN;
128 extern HPALETTE MFDRV_SelectPalette( PHYSDEV dev, HPALETTE hPalette, BOOL bForceBackground) DECLSPEC_HIDDEN;
129 extern UINT MFDRV_RealizePalette(PHYSDEV dev, HPALETTE hPalette, BOOL primary) DECLSPEC_HIDDEN;
130 extern COLORREF MFDRV_SetBkColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
131 extern INT MFDRV_SetBkMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
132 extern INT MFDRV_SetMapMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
133 extern DWORD MFDRV_SetMapperFlags( PHYSDEV dev, DWORD flags ) DECLSPEC_HIDDEN;
134 extern COLORREF MFDRV_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color ) DECLSPEC_HIDDEN;
135 extern INT MFDRV_SetPolyFillMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
136 extern INT MFDRV_SetROP2( PHYSDEV dev, INT rop ) DECLSPEC_HIDDEN;
137 extern INT MFDRV_SetRelAbs( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
138 extern INT MFDRV_SetStretchBltMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
139 extern UINT MFDRV_SetTextAlign( PHYSDEV dev, UINT align ) DECLSPEC_HIDDEN;
140 extern INT MFDRV_SetTextCharacterExtra( PHYSDEV dev, INT extra ) DECLSPEC_HIDDEN;
141 extern COLORREF MFDRV_SetTextColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
142 extern INT MFDRV_SetTextJustification( PHYSDEV dev, INT extra, INT breaks ) DECLSPEC_HIDDEN;
143 extern INT MFDRV_SetViewportExt( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
144 extern INT MFDRV_SetViewportOrg( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
145 extern INT MFDRV_SetWindowExt( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
146 extern INT MFDRV_SetWindowOrg( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
147 extern BOOL MFDRV_StretchBlt( PHYSDEV devDst, INT xDst, INT yDst, INT widthDst,
148 INT heightDst, PHYSDEV devSrc, INT xSrc, INT ySrc,
149 INT widthSrc, INT heightSrc, DWORD rop ) DECLSPEC_HIDDEN;
150 extern BOOL MFDRV_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
151 extern INT MFDRV_SetDIBitsToDevice( PHYSDEV dev, INT xDest, INT yDest, DWORD cx,
152 DWORD cy, INT xSrc, INT ySrc,
153 UINT startscan, UINT lines, LPCVOID bits,
154 const BITMAPINFO *info, UINT coloruse ) DECLSPEC_HIDDEN;
155 extern INT MFDRV_StretchDIBits( PHYSDEV dev, INT xDst, INT yDst, INT widthDst,
156 INT heightDst, INT xSrc, INT ySrc,
157 INT widthSrc, INT heightSrc, const void *bits,
158 const BITMAPINFO *info, UINT wUsage,
159 DWORD dwRop ) DECLSPEC_HIDDEN;
160 extern BOOL MFDRV_StrokeAndFillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
161 extern BOOL MFDRV_StrokePath( PHYSDEV dev ) DECLSPEC_HIDDEN;
162 extern BOOL MFDRV_WidenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
164 #endif /* __WINE_METAFILEDRV_H */