blob: 650551ec47189a4ea5bc6ab82b54d471ab8e0050 (
plain)
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
|