diff options
Diffstat (limited to 'protocols/JabberG/jabber.cpp')
-rw-r--r-- | protocols/JabberG/jabber.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/protocols/JabberG/jabber.cpp b/protocols/JabberG/jabber.cpp index 479afdaa59..95ba8e06ef 100644 --- a/protocols/JabberG/jabber.cpp +++ b/protocols/JabberG/jabber.cpp @@ -90,12 +90,17 @@ static int sttCompareProtocols(const CJabberProto *p1, const CJabberProto *p2) LIST<CJabberProto> g_Instances(1, sttCompareProtocols);
/////////////////////////////////////////////////////////////////////////////
-extern "C" BOOL WINAPI DllMain( HINSTANCE hModule, DWORD, LPVOID )
+BOOL WINAPI DllMain( HINSTANCE hModule, DWORD, LPVOID )
{
hInst = hModule;
return TRUE;
}
+extern "C" __declspec( dllexport ) PLUGININFOEX *MirandaPluginInfoEx( DWORD mirandaVersion )
+{
+ return &pluginInfo;
+}
+
extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_PROTOCOL, MIID_LAST};
///////////////////////////////////////////////////////////////////////////////
|