From b0f3e30460fc26ef4fe59bc161b0fddd8eeb9a08 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 11 Oct 2016 21:05:12 +0300 Subject: Yahoo & YahooGroups plugins moved to _deprecated --- tools/_deprecated/Yahoo/src/icolib.cpp | 57 ++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 tools/_deprecated/Yahoo/src/icolib.cpp (limited to 'tools/_deprecated/Yahoo/src/icolib.cpp') diff --git a/tools/_deprecated/Yahoo/src/icolib.cpp b/tools/_deprecated/Yahoo/src/icolib.cpp new file mode 100644 index 0000000000..886ad3578a --- /dev/null +++ b/tools/_deprecated/Yahoo/src/icolib.cpp @@ -0,0 +1,57 @@ +/* + * $Id: util.c 3936 2006-10-02 06:58:19Z ghazan $ + * + * myYahoo Miranda Plugin + * + * Authors: Gennady Feldman (aka Gena01) + * Laurent Marechal (aka Peorth) + * + * This code is under GPL and is based on AIM, MSN and Miranda source code. + * I want to thank Robert Rainwater and George Hazan for their code and support + * and for answering some of my questions during development of this plugin. + */ +#include "stdafx.h" +#include +#include +#include "m_icolib.h" + +#include "resource.h" + +static IconItem iconList[] = +{ + { LPGEN("Main"), "yahoo", IDI_YAHOO }, + { LPGEN("Mail"), "mail", IDI_INBOX }, + { LPGEN("Profile"), "profile", IDI_PROFILE }, + { LPGEN("Refresh"), "refresh", IDI_REFRESH }, + { LPGEN("Address Book"), "yab", IDI_YAB }, + { LPGEN("Set Status"), "set_status", IDI_SET_STATUS }, + { LPGEN("Calendar"), "calendar", IDI_CALENDAR } +}; + +void IconsInit(void) +{ + Icon_Register(hInstance, "Protocols/YAHOO", iconList, _countof(iconList), "YAHOO"); +} + +HICON LoadIconEx(const char* name, bool big) +{ + char szSettingName[100]; + mir_snprintf(szSettingName, "YAHOO_%s", name); + return IcoLib_GetIcon(szSettingName, big); +} + +HANDLE GetIconHandle(int iconId) +{ + for (unsigned i = 0; i < _countof(iconList); i++) + if (iconList[i].defIconID == iconId) + return iconList[i].hIcolib; + + return NULL; +} + +void ReleaseIconEx(const char* name, bool big) +{ + char szSettingName[100]; + mir_snprintf(szSettingName, "YAHOO_%s", name); + IcoLib_Release(szSettingName, big); +} -- cgit v1.2.3