diff options
author | George Hazan <ghazan@miranda.im> | 2019-04-12 16:48:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-04-12 16:48:28 +0300 |
commit | 858af271c0175cce3aad327c8092f6bcd69c89b4 (patch) | |
tree | f9141bfae89e5b615cadbe5aaa2c8f5ba3b5eed1 /include/newpluginapi.h | |
parent | 2a2ae7810fe1d5dcaa4e19d57b6010a4d84a338f (diff) |
major crutch for pascal plugins
Diffstat (limited to 'include/newpluginapi.h')
-rw-r--r-- | include/newpluginapi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index 69fa059881..30f7abff60 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -151,6 +151,8 @@ typedef int(*pfnUninitProto)(PROTO_INTERFACE*); #pragma warning(push)
#pragma warning(disable:4275)
+struct IcolibItem;
+
class MIR_APP_EXPORT CMPluginBase : public MNonCopyable
{
void tryOpenLog();
@@ -160,7 +162,7 @@ protected: const char *m_szModuleName;
const PLUGININFOEX &m_pInfo;
HANDLE m_hLogger = nullptr;
- LIST<void> m_arIcons;
+ LIST<IcolibItem> m_arIcons;
CMPluginBase(const char *moduleName, const PLUGININFOEX &pInfo);
~CMPluginBase();
|