diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 16:48:30 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 16:48:30 +0000 |
commit | 7661154c6360c2b9ff10dc536fe029323f7a96cb (patch) | |
tree | bd2dd8c7a7d13e31708a098412f3d0ca65d799b9 /plugins/Console/src/init.cpp | |
parent | c420197ebd62618924644ae0e205947418c57c12 (diff) |
Console - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13141 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Console/src/init.cpp')
-rw-r--r-- | plugins/Console/src/init.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Console/src/init.cpp b/plugins/Console/src/init.cpp index bf9546f40b..019dfe453d 100644 --- a/plugins/Console/src/init.cpp +++ b/plugins/Console/src/init.cpp @@ -22,7 +22,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
DWORD mirandaVer;
int hLangpack;
@@ -42,13 +42,13 @@ PLUGININFOEX pluginInfoEx={ {0x23d4f302, 0xd513, 0x45b7, {0x90, 0x27, 0x44, 0x5f, 0x29, 0x55, 0x73, 0x11}}
};
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
}
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfoEx;
}
|