- Revert 44301
[reactos.git] / subsystems / win32 / win32k / include / bitmaps.h
1 #ifndef __WIN32K_BITMAPS_H
2 #define __WIN32K_BITMAPS_H
3
4 #include "surface.h"
5
6 INT FASTCALL DIB_GetDIBWidthBytes (INT width, INT depth);
7 int APIENTRY DIB_GetDIBImageBytes (INT width, INT height, INT depth);
8 INT FASTCALL DIB_BitmapInfoSize (const BITMAPINFO * info, WORD coloruse);
9 INT APIENTRY BITMAP_GetObject(SURFACE * bmp, INT count, LPVOID buffer);
10 HBITMAP FASTCALL IntCreateBitmap(IN SIZEL Size, IN LONG Width, IN ULONG Format, IN ULONG Flags, IN PVOID Bits);
11 HBITMAP FASTCALL BITMAP_CopyBitmap (HBITMAP hBitmap);
12 UINT FASTCALL BITMAP_GetRealBitsPixel(UINT nBitsPixel);
13 INT FASTCALL BITMAP_GetWidthBytes (INT bmWidth, INT bpp);
14
15 #endif