diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/m_core.h | 5 | ||||
-rw-r--r-- | include/newpluginapi.h | 12 |
2 files changed, 12 insertions, 5 deletions
diff --git a/include/m_core.h b/include/m_core.h index 7f01dab6a2..83771c6120 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -172,13 +172,8 @@ typedef struct tagIconItemT }
IconItemT;
-#if defined( __cplusplus )
-MIR_CORE_DLL(void) Icon_Register(HINSTANCE hInst, const char* szSection, IconItem* pIcons, size_t iCount, const char *prefix = nullptr, int = hLangpack);
-MIR_CORE_DLL(void) Icon_RegisterT(HINSTANCE hInst, const wchar_t* szSection, IconItemT* pIcons, size_t iCount, const char *prefix = nullptr, int = hLangpack);
-#else
MIR_CORE_DLL(void) Icon_Register(HINSTANCE hInst, const char* szSection, IconItem* pIcons, size_t iCount, const char *prefix, int hLangpack);
MIR_CORE_DLL(void) Icon_RegisterT(HINSTANCE hInst, const wchar_t* szSection, IconItemT* pIcons, size_t iCount, const char *prefix, int hLangpack);
-#endif
///////////////////////////////////////////////////////////////////////////////
// language packs support
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index b85f489505..859c4e60d0 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -177,6 +177,18 @@ public: __forceinline HINSTANCE getInst() const { return m_hInst; }
__forceinline void setInst(HINSTANCE hInst) { m_hInst = hInst; }
+ template <size_t _Size>
+ __forceinline void registerIcon(const char *szSection, IconItem(&pIcons)[_Size], const char *prefix = nullptr)
+ {
+ Icon_Register(m_hInst, szSection, pIcons, _Size, prefix, m_hLang);
+ }
+
+ template <size_t _Size>
+ __forceinline void registerIconW(const wchar_t *szSection, IconItemT(&pIcons)[_Size], const char *prefix = nullptr)
+ {
+ Icon_RegisterT(m_hInst, szSection, pIcons, _Size, prefix, m_hLang);
+ }
+
__forceinline INT_PTR delSetting(const char *name)
{
return db_unset(0, m_szModuleName, name);
|