Changeset 9849 for trunk/include/winicon.h
- Timestamp:
- Feb 24, 2003, 6:01:47 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/winicon.h
r581 r9849 1 /* $Id: winicon.h,v 1. 2 1999-08-19 14:18:24sandervl Exp $ */1 /* $Id: winicon.h,v 1.3 2003-02-24 17:01:47 sandervl Exp $ */ 2 2 3 3 /* … … 146 146 WORD wType; // 1 for icons 147 147 WORD wCount; // Number of components 148 //Fout in docs, geen padding149 // WORD padding; // filler for DWORD alignment150 148 } IconHeader; 151 149 … … 182 180 DWORD lBytesInRes; 183 181 WORD wNameOrdinal; // Points to component 184 //Fout in docs, geen padding185 // WORD padding; // filler for DWORD alignment186 182 } ResourceDirectory; 187 183 184 typedef struct 185 { 186 BYTE bWidth; 187 BYTE bHeight; 188 BYTE bColorCount; 189 BYTE bReserved; 190 WORD wPlanes; 191 WORD wBitCount; 192 DWORD dwBytesInRes; 193 DWORD dwImageOffset; 194 } ICONDIRENTRY; 195 196 typedef struct 197 { 198 WORD idReserved; 199 WORD idType; 200 WORD idCount; 201 } ICONDIR; 202 188 203 #pragma pack() 189 204
Note:
See TracChangeset
for help on using the changeset viewer.