1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _ICONS_INC #define _ICONS_INC void InitIcons(void); typedef enum {I_CHKUPD, I_RSTRT, I_CHKUPDEXT} IconIndex; HICON LoadIconEx(IconIndex i, bool big = false); HANDLE GetIconHandle(IconIndex i); void ReleaseIconEx(HICON hIcon); #endif