The RESDIR structure contains information about an individual icon or cursor component in a resource group. There is one RESDIR structure for each group component. The structure definition provided here is for explanation only; it is not present in any standard header file.
typedef struct tagRESDIR
{
union
{
ICONRESDIR Icon;
CURSORDIR Cursor;
} ResInfo;
WORD Planes;
WORD BitCount;
DWORD BytesInRes;
WORD IconCursorId;
} RESDIR;
One or more RESDIR structures immediately follow the NEWHEADER structure in the .RES file. The ResCount member of the NEWHEADER structure specifies the number of RESDIR structures. Note that the RESDIR structure consists of either an ICONRESDIR structure or a CURSORDIR structure followed by the Planes, BitCount, BytesInRes and IconCursorId members. If the RESDIR structure contains information about a cursor, the first two WORDS the resource compiler writes to the RT_CURSOR resource are the xHotSpot and yHotSpot members of the LOCALHEADER structure.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Unsupported.
Resources Overview, Resource Structures, CURSORDIR, ICONRESDIR, LOCALHEADER, NEWHEADER