diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 15:53:33 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 15:53:33 +0000 |
commit | f439429a66636087d8194dafe099e515f861031b (patch) | |
tree | 4294a3441229f8a7a8a79301a38eb394781a723b /plugins/AVS | |
parent | 1734b8cfe7a559a09302fa2d06cc1779c56ee39a (diff) |
code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@1993 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AVS')
-rw-r--r-- | plugins/AVS/src/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 6ee1db0a79..1324392ec6 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -2448,7 +2448,7 @@ static int LoadAvatarModule() return 0;
}
-extern "C" BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD dwReason, LPVOID reserved)
+BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD dwReason, LPVOID reserved)
{
g_hInst = hInstDLL;
return TRUE;
@@ -2459,8 +2459,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX * MirandaPluginInfoEx(DWORD mirand return &pluginInfoEx;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { { 0xece29554, 0x1cf0, 0x41da, { 0x85, 0x82, 0xfb, 0xe8, 0x45, 0x5c, 0x6b, 0xec } }, MIID_LAST};
-
extern "C" int __declspec(dllexport) Load(void)
{
INT_PTR result = CALLSERVICE_NOTFOUND;
|