dibdrv: Add stubs to match winex11 GDI driver exports
[wine/dibdrv.git] / dlls / winedib.drv / dib.c
blobce93720f1fb654e8455fe88dbd23bb3257f22f48
1 /*
2 * DIBDRV device-independent bitmaps
4 * Copyright 2007 Jesse Allen
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 #include "config.h"
23 #include <stdarg.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wine/debug.h"
28 #include "dibdrv.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(dibdrv);
32 /***********************************************************************
33 * DIBDRV_CreateDIBSection
35 HBITMAP DIBDRV_CreateDIBSection( DIBDRVPHYSDEV *physDev, HBITMAP hbitmap,
36 const BITMAPINFO *bmi, UINT usage )
38 FIXME("stub\n");
39 return hbitmap;
42 /***********************************************************************
43 * DIBDRV_GetDIBits
45 INT DIBDRV_GetDIBits( DIBDRVPHYSDEV *physDev, HBITMAP hbitmap, UINT startscan,
46 UINT lines, LPCVOID bits, const BITMAPINFO *info, UINT coloruse )
48 FIXME("stub\n");
49 return 0;
52 /***********************************************************************
53 * DIBDRV_SetDIBColorTable
55 UINT DIBDRV_SetDIBColorTable( DIBDRVPHYSDEV *physDev, UINT start, UINT count,
56 const RGBQUAD *colors )
58 FIXME("stub\n");
59 return count;
62 /***********************************************************************
63 * DIBDRV_SetDIBits
65 INT DIBDRV_SetDIBits( DIBDRVPHYSDEV *physDev, HBITMAP hbitmap, UINT startscan,
66 UINT lines, LPCVOID bits, const BITMAPINFO *info, UINT coloruse )
68 FIXME("stub\n");
69 return 0;
72 /*************************************************************************
73 * DIBDRV_SetDIBitsToDevice
75 INT DIBDRV_SetDIBitsToDevice( DIBDRVPHYSDEV *physDev, INT xDest, INT yDest, DWORD cx,
76 DWORD cy, INT xSrc, INT ySrc,
77 UINT startscan, UINT lines, LPCVOID bits,
78 const BITMAPINFO *info, UINT coloruse )
80 FIXME("stub\n");
81 return 0;