blob: 76389d932fdcf7cfc219153bf7abc297777e4b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _ICONS_INC
#define _ICONS_INC
void InitIcons(void);
void DeinitIcons(void);
typedef enum {I_CHKUPD, I_RSTRT, I_CHKUPDEXT} IconIndex;
HICON LoadIconEx(IconIndex i);
void ReleaseIconEx(HICON hIcon);
#endif
|