summaryrefslogtreecommitdiff
path: root/plugins/CountryFlags/src/flags.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-02-22 16:09:19 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-02-22 16:09:19 +0000
commite180fa60516c6133cef12d839ce8eaea6adcbfad (patch)
tree5eb76050ce9c444dd3bcee87715cb9033b12483b /plugins/CountryFlags/src/flags.h
parentec0e2844534a148012b76debb6eff48d8c1931a8 (diff)
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3690 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CountryFlags/src/flags.h')
-rw-r--r--plugins/CountryFlags/src/flags.h30
1 files changed, 8 insertions, 22 deletions
diff --git a/plugins/CountryFlags/src/flags.h b/plugins/CountryFlags/src/flags.h
index e5a693cd07..66308023a0 100644
--- a/plugins/CountryFlags/src/flags.h
+++ b/plugins/CountryFlags/src/flags.h
@@ -19,39 +19,25 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define _CRT_SECURE_NO_WARNINGS
#define WIN32_LEAN_AND_MEAN
+
#include <windows.h>
-#define NONAMELESSUNION
#include <commctrl.h> /* for ImageList functions */
-#define NOWIN2K
+
#include <win2k.h>
-#define MIRANDA_VER 0x0A00
-#include <stdio.h>
#include <newpluginapi.h>
-#include <m_system.h>
-#include <m_utils.h>
#include <m_langpack.h>
#include <m_icolib.h>
-#include <m_clui.h>
-#include <m_cluiframes.h>
#include <m_message.h>
#include <m_database.h>
#include <m_options.h>
-#include <m_contacts.h>
#include <m_protocols.h>
#include <m_extraicons.h>
+
#define FLAGS_NOHELPERFUNCTIONS
-#include "m_flags.h"
-#include "resource.h"
+#include <m_flags.h>
-#if defined(_MSC_VER) && !defined(FASTCALL)
- #define FASTCALL __fastcall
-#else
- #define FASTCALL
-#endif
-#if defined(_DEBUG)
- #undef FASTCALL
- #define FASTCALL
-#endif
+#include "resource.h"
+#include "version.h"
/* huffman.c */
#ifdef HUFFMAN_ENCODE
@@ -60,8 +46,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
void Huffman_Uncompress(unsigned char *in,unsigned char *out,unsigned int insize,unsigned int outsize);
/* icons.c */
-HICON FASTCALL LoadFlagIcon(int countryNumber);
-int FASTCALL CountryNumberToIndex(int countryNumber);
+HICON __fastcall LoadFlagIcon(int countryNumber);
+int __fastcall CountryNumberToIndex(int countryNumber);
void InitIcons(void);
void UninitIcons(void);