From d11bdd5e1d14d7f89ad695d49e23ccce9cea0a84 Mon Sep 17 00:00:00 2001 From: Glenn Wurster Date: Sun, 12 Jun 2005 10:41:39 +0000 Subject: [PATCH] Add declaration of X11DRV_GetDIBColorTable to avoid compile warning. --- dlls/x11drv/x11drv.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dlls/x11drv/x11drv.h b/dlls/x11drv/x11drv.h index 6fe2983d7f..78efaeedd7 100644 --- a/dlls/x11drv/x11drv.h +++ b/dlls/x11drv/x11drv.h @@ -430,9 +430,10 @@ extern INT X11DRV_LockDIBSection(X11DRV_PDEVICE *physDev,INT,BOOL); extern void X11DRV_UnlockDIBSection(X11DRV_PDEVICE *physDev,BOOL); extern void X11DRV_DIB_DeleteDIBSection(X_PHYSBITMAP *physBitmap, DIBSECTION *dib); -void X11DRV_DIB_CopyDIBSection(X11DRV_PDEVICE *physDevSrc, X11DRV_PDEVICE *physDevDst, - DWORD xSrc, DWORD ySrc, DWORD xDest, DWORD yDest, - DWORD width, DWORD height); +extern UINT X11DRV_GetDIBColorTable( X11DRV_PDEVICE *physDev, UINT start, UINT count, RGBQUAD *colors ); +extern void X11DRV_DIB_CopyDIBSection(X11DRV_PDEVICE *physDevSrc, X11DRV_PDEVICE *physDevDst, + DWORD xSrc, DWORD ySrc, DWORD xDest, DWORD yDest, + DWORD width, DWORD height); struct _DCICMD; extern INT X11DRV_DCICommand(INT cbInput, const struct _DCICMD *lpCmd, LPVOID lpOutData);