Changeset 9849 for trunk/include
- Timestamp:
- Feb 24, 2003, 6:01:47 PM (23 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/custombuild.h
r9829 r9849 143 143 LPSTR pszPEGUILoader, INT cchPEGUILoader, 144 144 LPSTR pszNELoader, INT cchNELoader); 145 146 //Checks whether program is LX or PE 147 BOOL WIN32API ODIN_IsWin32App(LPSTR lpszProgramPath); 145 148 146 149 //Custom build function to disable loading of LX dlls -
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 -
trunk/include/winres.h
r6479 r9849 17 17 18 18 void *WIN32API ConvertIconGroup(void *hdr, HINSTANCE hInstance, DWORD *ressize); 19 void *WIN32API ConvertIconGroupIndirect(void *lpIconData, DWORD iconsize, DWORD *ressize); 19 20 20 21 #endif
Note:
See TracChangeset
for help on using the changeset viewer.