summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-04-27 04:45:00 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-04-27 04:45:00 +0000
commit6f9a21a88194da1adcee2c3ad9869ecb48e36b86 (patch)
treeb44e8435a1f46b2679dc9e0c4777e5df6a9ce438
parent9bab7738e5a39b19daf2c2d88ea1b4501c26fa5b (diff)
remove old IcoLib.h header
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@162 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r--updater/IcoLib.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/updater/IcoLib.h b/updater/IcoLib.h
deleted file mode 100644
index 1817df6..0000000
--- a/updater/IcoLib.h
+++ /dev/null
@@ -1,37 +0,0 @@
-typedef struct {
- int cbSize;
- char *pszSection; //section name used to group icons
- char *pszDescription; //description for options dialog
- char *pszName; //name to refer to icon when playing and in db
- //this name is miranda-wide. so use prefixes of your plugin
- //e.g: "isee_connect", "clist_delete", etc
- char *pszDefaultFile; //default icon file to use
- int iDefaultIndex;
-} SKINICONDESC;
-
-typedef struct {
- int cbSize;
- char *pszSection;
- char *pszDescription;
- char *pszName;
- char *pszDefaultFile;
- int iDefaultIndex;
- HICON hDefaultIcon;
-} SKINICONDESC2;
-
-//
-// Add a icon into options UI
-//
-// wParam = (WPARAM)0
-// lParam = (LPARAM)(SKINICONDESC*)sid;
-//
-#define MS_SKIN2_ADDICON "Skin2/Icons/AddIcon"
-//
-// Retrieve HICON with name specified in lParam
-// Returned HICON SHOULDN'T be destroyed, it managed by IcoLib
-//
-#define MS_SKIN2_GETICON "Skin2/Icons/GetIcon"
-//
-// Icons change notification
-//
-#define ME_SKIN2_ICONSCHANGED "Skin2/IconsChanged"