ICONINFO: Difference between revisions
Appearance
Created page with "Icon information data structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> 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 ic..." |
(No difference)
|
Latest revision as of 23:02, 14 April 2025
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 ;