Changeset 2634 for trunk/include/win/imagelist.h
- Timestamp:
- Feb 4, 2000, 6:00:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/imagelist.h
r94 r2634 1 /* $Id: imagelist.h,v 1. 3 1999-06-10 16:21:51 achimhaExp $ */1 /* $Id: imagelist.h,v 1.4 2000-02-04 17:00:23 cbratschi Exp $ */ 2 2 /* 3 3 * ImageList definitions … … 6 6 * Copyright 1999 Achim Hasenmueller 7 7 */ 8 8 9 9 #ifndef _IMAGELIST_H 10 10 #define _IMAGELIST_H … … 12 12 #include "wingdi.h" 13 13 14 /* the ones with offsets at the end are the same as in Windows */ 14 15 struct _IMAGELIST 15 16 { 17 DWORD magic; /* 00: 'LMIH' */ 18 INT cCurImage; /* 04: ImageCount */ 19 INT cMaxImage; /* 08: maximages */ 20 DWORD x3; 21 INT cx; /* 10: cx */ 22 INT cy; /* 14: cy */ 23 DWORD x4; 24 UINT flags; /* 1c: flags */ 25 DWORD x5; 26 COLORREF clrBk; /* 24: bkcolor */ 27 28 29 /* not yet found out */ 16 30 HBITMAP hbmImage; 17 31 HBITMAP hbmMask; 18 32 HBRUSH hbrBlend25; 19 33 HBRUSH hbrBlend50; 20 COLORREF clrBk;21 34 COLORREF clrFg; 22 35 INT cInitial; 23 36 INT cGrow; 24 INT cMaxImage;25 INT cCurImage;26 INT cx;27 INT cy;28 UINT flags;29 37 UINT uBitsPixel; 30 38 INT nOvlIdx[15]; 31 39 }; 32 40 33 41 typedef struct _IMAGELIST *HIMAGELIST; 42 43 /* Header used by ImageList_Read() and ImageList_Write() */ 44 typedef struct _ILHEAD 45 { 46 USHORT usMagic; 47 USHORT usVersion; 48 WORD cCurImage; 49 WORD cMaxImage; 50 WORD cGrow; 51 WORD cx; 52 WORD cy; 53 COLORREF bkcolor; 54 WORD flags; 55 SHORT ovls[4]; 56 } ILHEAD; 34 57 35 58 #endif /* _IMAGELIST_H */
Note:
See TracChangeset
for help on using the changeset viewer.