diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/miranda.h | 8 | ||||
-rw-r--r-- | src/core/modules.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/core/miranda.h b/src/core/miranda.h index 7dfba64a66..8b7d5769db 100644 --- a/src/core/miranda.h +++ b/src/core/miranda.h @@ -247,3 +247,11 @@ public: #define StrConvTu(x) x
#define StrConvA(x) StrConvAT(x)
#define StrConvU(x) x
+
+///////////////////////////////////////////////////////////////////////////////
+
+extern "C"
+{
+ MIR_CORE_DLL(int) Langpack_GetPluginHandle(PLUGININFOEX* pInfo);
+ MIR_CORE_DLL(int) Langpack_MarkPluginLoaded(PLUGININFOEX* pInfo);
+};
diff --git a/src/core/modules.cpp b/src/core/modules.cpp index 68a718bc11..d1636a09a0 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -136,7 +136,7 @@ int LoadDefaultModules(void) if ( LoadAddContactModule()) return 1;
if ( LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first
- LangPackDropUnusedItems();
+ Langpack_SortDuplicates();
if ( LoadAccountsModule()) return 1;
|