Icon information data structure.

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 ;


[Back] [Next]