diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/m_icolib.h | 2 | ||||
-rw-r--r-- | include/newpluginapi.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/m_icolib.h b/include/m_icolib.h index d06160ffcd..3e8bdef226 100644 --- a/include/m_icolib.h +++ b/include/m_icolib.h @@ -60,7 +60,7 @@ extern "C" // Adds an icon into the icon library
// returns a handle to the newly added item
-MIR_APP_DLL(HANDLE) IcoLib_AddIcon(SKINICONDESC *sid, int _lang = hLangpack);
+MIR_APP_DLL(HANDLE) IcoLib_AddIcon(SKINICONDESC *sid, int langId);
///////////////////////////////////////////////////////////////////////////////
// Removes an icon from icon library by icon's name or handle
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index 585adaa27e..3e8f2d6993 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -199,6 +199,8 @@ public: void openOptions(const wchar_t *pszGroup, const wchar_t *pszPage = 0, const wchar_t *pszTab = 0);
void openOptionsPage(const wchar_t *pszGroup, const wchar_t *pszPage = 0, const wchar_t *pszTab = 0);
+ HANDLE addIcon(struct SKINICONDESC*);
+
int addSound(const char *name, const wchar_t *section, const wchar_t *description, const wchar_t *defaultFile = nullptr);
int addUserInfo(WPARAM wParam, struct OPTIONSDIALOGPAGE *odp);
|