rPansa
Advanced Member | Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору gjf Не берут, согласно исходникам и документации..)) Цитата: Правильно посоветовал andreidar. | ? Он же сказал потом: Цитата: Что для History++, что для tabSRMM места нахождения иконпаков ЖЁСТКО прописаны в коде: либо в той же папке, что и плагины, либо в папке Icons по тому пути, откуда была запущена Миранда. History++ Код: . . . hppIPName = 'historypp_icons.dll'; . . . hppIconsDir := ExpandFileName(hppPluginsDir+'..\Icons\'); if FileExists(hppIconsDir+hppIPName) then Result := hppIconsDir+hppIPName else if FileExists(hppPluginsDir+hppIPName) then Result := hppPluginsDir+hppIPName else begin Result := hppPluginsDir+hppDllName; . . . | tabSRMM (README.ICONS): Цитата: Beginning with release 0.0.8.95, there are no more icons in the tabsrmm*.DLL. The icons have been moved to a separate resource DLL to make the creation of icon packs easier. You NEED TO COPY THE tabsrmm_icons.dll to your Miranda Plugins folder (just the same location where tabsrmm*.DLL resides OR to the \icons subfolder just below your main miranda installation directory. tabSRMM will search for a valid tabsrmm_icons.dll in the following order: 1. plugins folder 2. icons folder If none can be found, you'll get a warning message. You can still continue to run tabSRMM, but you'll get no icons on the toolbar and most likely icons will be missing in other places too (status bar, for example). |
Код: . . . strncpy(szFilename, "plugins\\tabsrmm_icons.dll", MAX_PATH); g_hIconDLL = LoadLibraryA(szFilename); if (g_hIconDLL == 0) { strncpy(szFilename, "icons\\tabsrmm_icons.dll", MAX_PATH); g_hIconDLL = LoadLibraryA(szFilename); if (g_hIconDLL == 0) { MessageBox(0, TranslateT("Critical: cannot init IcoLib, no resource DLL found."), _T("tabSRMM"), MB_OK); return 0; } } . . . | Добавлено: Единственное отличие -- в том, что порядок поиска иконпака у этих плагинов разный: у хпп сначала в иконсах проверяется, а потом рядом с плагином, а у табсов - наоборот | Всего записей: 1312 | Зарегистр. 14-01-2005 | Отправлено: 21:16 15-10-2009 | Исправлено: rPansa, 21:31 15-10-2009 |
|