mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
c73fd0768f
- Create a global 4bpp dib section for tests - More tests for GetDIBits svn path=/trunk/; revision=56606
16 lines
282 B
C
16 lines
282 B
C
|
|
extern HBITMAP ghbmpDIB32;
|
|
extern HDC ghdcDIB32;
|
|
extern PULONG pulDIB32Bits;
|
|
extern HBITMAP ghbmpDIB4;
|
|
extern HDC ghdcDIB4;
|
|
extern PULONG pulDIB4Bits;
|
|
extern HPALETTE ghpal;
|
|
extern struct
|
|
{
|
|
LOGPALETTE logpal;
|
|
PALETTEENTRY logpalettedata[8];
|
|
} gpal;
|
|
|
|
BOOL InitStuff(void);
|
|
|