Kaydet (Commit) c985cda8 authored tarafından Caolán McNamara's avatar Caolán McNamara

COMPRESS_OWN define is not used standalone anywhere

Change-Id: Iaca54d62a48711a7763cac98c6f303b952b2da29
üst 82070481
...@@ -33,12 +33,11 @@ class Bitmap; ...@@ -33,12 +33,11 @@ class Bitmap;
// - Compression defines // - Compression defines
#define COMPRESS_OWN ('S'|('D'<<8UL))
#define COMPRESS_NONE ( 0UL ) #define COMPRESS_NONE ( 0UL )
#define RLE_8 ( 1UL ) #define RLE_8 ( 1UL )
#define RLE_4 ( 2UL ) #define RLE_4 ( 2UL )
#define BITFIELDS ( 3UL ) #define BITFIELDS ( 3UL )
#define ZCOMPRESS ( COMPRESS_OWN | 0x01000000UL ) /* == 'SD01' (binary) */ #define ZCOMPRESS ( ('S'|('D'<<8UL)) | 0x01000000UL ) /* == 'SD01' (binary) */
bool VCL_DLLPUBLIC ReadDIB( // ReadDIB(rBitmap, rIStm, true); bool VCL_DLLPUBLIC ReadDIB( // ReadDIB(rBitmap, rIStm, true);
Bitmap& rTarget, Bitmap& rTarget,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment