X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fwin32ss%2Fgdi%2Fgdi32%2Finclude%2Fwine%2Fgdi_driver.h;h=fcf3de9d8890eee040aef55498c6a46772950807;hp=f8bfe8cbc62c925c35ad1f79ba69072e399a60b1;hb=b1f132e66066bea16bcaa9077231d746332a8c3b;hpb=3b7b8b89b3a647e556e44b49e50290fa02d7f196 diff --git a/reactos/win32ss/gdi/gdi32/include/wine/gdi_driver.h b/reactos/win32ss/gdi/gdi32/include/wine/gdi_driver.h index f8bfe8cbc62..fcf3de9d889 100644 --- a/reactos/win32ss/gdi/gdi32/include/wine/gdi_driver.h +++ b/reactos/win32ss/gdi/gdi32/include/wine/gdi_driver.h @@ -97,7 +97,6 @@ struct gdi_dc_funcs BOOL (*pFontIsLinked)(PHYSDEV); BOOL (*pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT); BOOL (*pGdiComment)(PHYSDEV,UINT,const BYTE*); - BOOL (*pGdiRealizationInfo)(PHYSDEV,void*); UINT (*pGetBoundsRect)(PHYSDEV,RECT*,UINT); BOOL (*pGetCharABCWidths)(PHYSDEV,UINT,UINT,LPABC); BOOL (*pGetCharABCWidthsI)(PHYSDEV,UINT,UINT,WORD*,LPABC); @@ -105,6 +104,7 @@ struct gdi_dc_funcs INT (*pGetDeviceCaps)(PHYSDEV,INT); BOOL (*pGetDeviceGammaRamp)(PHYSDEV,LPVOID); DWORD (*pGetFontData)(PHYSDEV,DWORD,DWORD,LPVOID,DWORD); + BOOL (*pGdiFontRealizationInfo)(PHYSDEV,void*); DWORD (*pGetFontUnicodeRanges)(PHYSDEV,LPGLYPHSET); DWORD (*pGetGlyphIndices)(PHYSDEV,LPCWSTR,INT,LPWORD,DWORD); DWORD (*pGetGlyphOutline)(PHYSDEV,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*); @@ -213,7 +213,7 @@ static inline PHYSDEV get_physdev_entry_point( PHYSDEV dev, size_t offset ) #define GET_NEXT_PHYSDEV(dev,func) \ get_physdev_entry_point( (dev)->next, FIELD_OFFSET(struct gdi_dc_funcs,func)) - +/* static inline void push_dc_driver( PHYSDEV *dev, PHYSDEV physdev, const struct gdi_dc_funcs *funcs ) { while ((*dev)->funcs->priority > funcs->priority) dev = &(*dev)->next; @@ -222,7 +222,7 @@ static inline void push_dc_driver( PHYSDEV *dev, PHYSDEV physdev, const struct g physdev->hdc = (*dev)->hdc; *dev = physdev; } - +*/ /* support for window surfaces */ struct window_surface;