diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 21:55:01 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 21:55:01 +0000 |
commit | d77cfd0576c0818284c9cf10eedb8185339323d1 (patch) | |
tree | f9cdef8463f003406b7526b511dfab02c0cc553a /plugins/CountryFlags/src/extraimg.cpp | |
parent | 14b4c0ec4a43189f97078673b387a5c448156b74 (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/extraimg.cpp')
-rw-r--r-- | plugins/CountryFlags/src/extraimg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/CountryFlags/src/extraimg.cpp b/plugins/CountryFlags/src/extraimg.cpp index 9e9d0dd307..b57a382ea4 100644 --- a/plugins/CountryFlags/src/extraimg.cpp +++ b/plugins/CountryFlags/src/extraimg.cpp @@ -17,14 +17,14 @@ 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"
/* Services */
static HANDLE hServiceDetectContactOrigin;
/************************* Services *******************************/
-static INT_PTR ServiceDetectContactOriginCountry(WPARAM hContact, LPARAM lParam)
+static INT_PTR ServiceDetectContactOriginCountry(WPARAM hContact, LPARAM)
{
int countryNumber = 0xFFFF;
char *pszProto = GetContactProto(hContact);
@@ -114,7 +114,7 @@ static void __fastcall UnsetStatusIcon(MCONTACT hContact) Srmm_ModifyIcon(hContact, &sid);
}
-static int MsgWndEvent(WPARAM wParam,LPARAM lParam)
+static int MsgWndEvent(WPARAM, LPARAM lParam)
{
MessageWindowEventData *msgwe=(MessageWindowEventData*)lParam;
switch(msgwe->uType) {
@@ -153,7 +153,7 @@ void CALLBACK UpdateStatusIcons(LPARAM) }
}
-static int StatusIconsChanged(WPARAM wParam,LPARAM lParam)
+static int StatusIconsChanged(WPARAM, LPARAM)
{
if (bShowStatusIcon)
CallFunctionBuffered(UpdateStatusIcons, 0, FALSE, STATUSICON_REFRESHDELAY);
@@ -178,7 +178,7 @@ static int ExtraImgSettingChanged(WPARAM hContact, LPARAM lParam) /************************* Misc ***********************************/
-static int ExtraImgModulesLoaded(WPARAM wParam,LPARAM lParam)
+static int ExtraImgModulesLoaded(WPARAM, LPARAM)
{
/* Status Icon */
StatusIconData sid = { sizeof(sid) };
|