home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 4
/
BUGCD1997_05.BIN
/
aplic
/
clip4win
/
clip4win.exe
/
C4W30E.HUF
/
INCLUDE
/
BITMAP.CH
< prev
next >
Wrap
Text File
|
1995-03-23
|
667b
|
33 lines
/////////////////////////
//
// bitmap.ch - Windows bitmap definitions
//
// Written by: John M. Skelton, 2-Aug-94.
//
// Copyright (C) 1994 Skelton Software, Kendal Cottage, Hillam, Leeds LS25 5HP, UK.
// All Rights Reserved.
//
/////////////////////////
#ifndef C4W_BITMAP
#define C4W_BITMAP
// BITMAP structure (as Clipper array)
#define BM_Type 1
#define BM_Width 2
#define BM_Height 3
#define BM_WidthBytes 4
#define BM_Planes 5
#define BM_BitsPixel 6
#define BM_Bits 7
#define BM_STRUCT_DEF "int,int,int,int,byte,byte,long"
#ifndef SRCCOPY
#define SRCCOPY 13369376 // 0x00CC0020L
#endif // SRCCOPY
#endif // C4W_BITMAP