Jump to content

ICONINFO

From EDM2

Icon information data structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _ICONINFO {
  ULONG       cb;           /*  Length of the ICONINFO structure. */
  ULONG       fFormat;      /*  Indicates where the icon resides. */
  PSZ         pszFileName;  /*  Name of the file containing icon data. */
  HMODULE     hmod;         /*  Module containing the icon resource. */
  ULONG       resid;        /*  Identity of the icon resource. */
  ULONG       cbIconData;   /*  Length of the icon data in bytes. */
  PVOID       pIconData;    /*  Pointer to the buffer containing icon data. */
} ICONINFO;

typedef   ICONINFO   * PICONINFO ;