summaryrefslogtreecommitdiff
path: root/plugins/CyrTranslit/src/main.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-04-27 20:56:43 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-04-27 20:56:43 +0000
commite7c68ba44e35f115654f6f082565ee5ddf2b51c6 (patch)
treef4cbfa5804ea4ec77f890ca9f017e6fb54946458 /plugins/CyrTranslit/src/main.cpp
parent99708d95a8611baf2f72b81b926082bf395b106b (diff)
CyrTranslit - unified project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13209 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CyrTranslit/src/main.cpp')
-rw-r--r--plugins/CyrTranslit/src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CyrTranslit/src/main.cpp b/plugins/CyrTranslit/src/main.cpp
index 589d406e0f..5f8b499f08 100644
--- a/plugins/CyrTranslit/src/main.cpp
+++ b/plugins/CyrTranslit/src/main.cpp
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "plugin.h"
+#include "stdafx.h"
HINSTANCE hInst;
int hLangpack = 0;
@@ -37,7 +37,7 @@ PLUGININFOEX pluginInfoEx={
//------------------------------------------------------------------------------
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
@@ -45,7 +45,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
//------------------------------------------------------------------------------
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfoEx;
}