summaryrefslogtreecommitdiff
path: root/plugins/HistorySweeperLight/main.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-23 13:25:26 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-23 13:25:26 +0000
commit0fd468d8b619965db3264e71d5b493e572c33305 (patch)
treef44d1ef00aa15f2d1b39ff83a4887c63252b38ef /plugins/HistorySweeperLight/main.cpp
parenta3a666e6df4692260b56d28e80c840894428feca (diff)
HistorySweeperLight:
plusified git-svn-id: http://svn.miranda-ng.org/main/trunk@550 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistorySweeperLight/main.cpp')
-rw-r--r--plugins/HistorySweeperLight/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/HistorySweeperLight/main.cpp b/plugins/HistorySweeperLight/main.cpp
index 3174ab1369..9c1e4e8c66 100644
--- a/plugins/HistorySweeperLight/main.cpp
+++ b/plugins/HistorySweeperLight/main.cpp
@@ -149,12 +149,12 @@ int OnModulesLoaded(WPARAM wParam, LPARAM lParam)
return 0;
}
-__declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfoEx;
}
-int __declspec(dllexport) Load(PLUGINLINK *link)
+extern "C" __declspec(dllexport) int Load(PLUGINLINK *link)
{
pluginLink = link;
@@ -169,7 +169,7 @@ int __declspec(dllexport) Load(PLUGINLINK *link)
return 0;
}
-int __declspec(dllexport) Unload(void)
+extern "C" __declspec(dllexport) int Unload(void)
{
int i;
@@ -182,4 +182,4 @@ int __declspec(dllexport) Unload(void)
}
return 0;
-}
+} \ No newline at end of file