mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 03:27:31 +00:00
c73fd0768f
- Create a global 4bpp dib section for tests - More tests for GetDIBits svn path=/trunk/; revision=56606
17 lines
282 B
C
17 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);
|
|
|