summaryrefslogtreecommitdiff
path: root/plugins/CountryFlags/src/main.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-04-25 21:55:01 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-04-25 21:55:01 +0000
commitd77cfd0576c0818284c9cf10eedb8185339323d1 (patch)
treef9cdef8463f003406b7526b511dfab02c0cc553a /plugins/CountryFlags/src/main.cpp
parent14b4c0ec4a43189f97078673b387a5c448156b74 (diff)
CoutryFlags - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13154 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CountryFlags/src/main.cpp')
-rw-r--r--plugins/CountryFlags/src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CountryFlags/src/main.cpp b/plugins/CountryFlags/src/main.cpp
index 216595c441..674e60f913 100644
--- a/plugins/CountryFlags/src/main.cpp
+++ b/plugins/CountryFlags/src/main.cpp
@@ -17,7 +17,7 @@ along with this program (Flags-License.txt); if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "flags.h"
+#include "stdafx.h"
int nCountriesCount;
CountryListEntry *countries;
@@ -39,13 +39,13 @@ static PLUGININFOEX pluginInfo={
{0x68c36842, 0x3d95, 0x4f4a, {0xab, 0x81, 0x1, 0x4d, 0x65, 0x93, 0x86, 0x3b}}
};
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
}
-extern "C" __declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfo;
}