diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-02-04 12:04:51 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-02-04 12:04:51 +0000 |
commit | 6f86573d7b9e898b274b9d3ea44dbe423628958d (patch) | |
tree | 52fc6312ba8e6ff3c78b0974ac7dfd1d1d175f1e /updater/icons.h | |
parent | 58e80d590afb95afa5e52dfa5cb8efc60f206cd5 (diff) |
GDI resource usage patch by borkra
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@113 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/icons.h')
-rw-r--r-- | updater/icons.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/updater/icons.h b/updater/icons.h index 79d2f3a..76389d9 100644 --- a/updater/icons.h +++ b/updater/icons.h @@ -1,9 +1,13 @@ #ifndef _ICONS_INC
#define _ICONS_INC
-extern HICON hIconCheck, hIconRestart, hIconCheckExit;
+void InitIcons(void);
+void DeinitIcons(void);
+
+typedef enum {I_CHKUPD, I_RSTRT, I_CHKUPDEXT} IconIndex;
+
+HICON LoadIconEx(IconIndex i);
+void ReleaseIconEx(HICON hIcon);
-void InitIcons();
-void DeinitIcons();
#endif
|