diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-23 23:29:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-23 23:29:25 +0300 |
commit | 176e52e14fd0358a7f26ca8d7b0205244dfde2e7 (patch) | |
tree | 10da2f8951d20103af0215c38d07ea96ba61c191 /include/m_clistint.h | |
parent | 91b13500b47a51f3a284d9f409b7b8dac167a06d (diff) |
no need to initialize pcli variable in each plugin (only in Clist_*)
Diffstat (limited to 'include/m_clistint.h')
-rw-r--r-- | include/m_clistint.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index 5b98e79ca8..207c5e14f3 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -441,7 +441,6 @@ struct CLIST_INTERFACE EXTERN_C MIR_APP_DLL(CLIST_INTERFACE*) Clist_GetInterface(void);
-#ifndef MIR_APP_EXPORTS
- extern CLIST_INTERFACE *pcli;
-#endif
+extern MIR_APP_EXPORT CLIST_INTERFACE g_CLI;
+
#endif // M_CLISTINT_H__
|