39 lines
638 B
C
39 lines
638 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 1994-95 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
imagelst.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Constants for shared image list.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Don Ryan (donryan) 12-Feb-1995
|
||
|
|
||
|
Environment:
|
||
|
|
||
|
User Mode - Win32
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
Jeff Parham (jeffparh) 12-Nov-1995
|
||
|
Copied from LLSMGR and modified for CCFApi bitmaps.
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef _IMAGELST_H_
|
||
|
#define _IMAGELST_H_
|
||
|
|
||
|
#define BMPI_RGB_BKGND (RGB(0,255,0)) // green mask...
|
||
|
|
||
|
#define BMPI_CERTIFICATE 0
|
||
|
|
||
|
#define BMPI_SMALL_SIZE 18 // one bit border...
|
||
|
#define BMPI_LARGE_SIZE 34 // one bit border...
|
||
|
|
||
|
#endif // _IMAGELST_H_
|