Commit c45bbee6 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Changed ressource dir structures.

Adapted FindBestIccon/FindBestCursor.
parent d0d1f150
...@@ -17,26 +17,23 @@ typedef struct ...@@ -17,26 +17,23 @@ typedef struct
BYTE bHeight; BYTE bHeight;
BYTE bColorCount; BYTE bColorCount;
BYTE bReserved; BYTE bReserved;
WORD wPlanes; } ICONRESDIR;
WORD wBitCount;
DWORD dwBytesInRes;
WORD wResId;
} ICONDIRENTRY;
typedef struct typedef struct
{ {
WORD wWidth; WORD wWidth;
WORD wHeight; WORD wHeight;
} CURSORDIR;
typedef struct
{ union
{ ICONRESDIR icon;
CURSORDIR cursor;
} ResInfo;
WORD wPlanes; WORD wPlanes;
WORD wBitCount; WORD wBitCount;
DWORD dwBytesInRes; DWORD dwBytesInRes;
WORD wResId; WORD wResId;
} CURSORDIRENTRY;
typedef union
{
ICONDIRENTRY icon;
CURSORDIRENTRY cursor;
} CURSORICONDIRENTRY; } CURSORICONDIRENTRY;
typedef struct typedef struct
......
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