diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-10 12:20:23 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-10 12:20:23 +0000 |
commit | cf72bb04a7650ae5e1b7011d17ce572bb06896b0 (patch) | |
tree | 13412643611b96a8059a8a326c7784f8fbf9d023 /plugins/TipperYM/src/common.h | |
parent | ffbf1155ff036f2640f9d192cfb95bc42864ed19 (diff) |
removed not used headers
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3955 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TipperYM/src/common.h')
-rw-r--r-- | plugins/TipperYM/src/common.h | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/plugins/TipperYM/src/common.h b/plugins/TipperYM/src/common.h index bbecc49386..1224719520 100644 --- a/plugins/TipperYM/src/common.h +++ b/plugins/TipperYM/src/common.h @@ -38,12 +38,8 @@ Boston, MA 02111-1307, USA. #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
#endif
-#define MIRANDA_VER 0x0A00
-
#define _CRT_SECURE_NO_WARNINGS
-#include <m_stdhdr.h>
-
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files:
#include <windows.h>
@@ -52,6 +48,7 @@ Boston, MA 02111-1307, USA. #include <time.h>
#include <windowsx.h>
+#include <m_stdhdr.h>
#include <win2k.h>
#include <newpluginapi.h>
#include <statusmodes.h>
@@ -79,7 +76,6 @@ Boston, MA 02111-1307, USA. #include <m_xstatus.h>
#include <m_icq.h>
-#include "resource.h"
#include "m_tipper.h"
#include "m_fingerprint.h"
#include "m_flags.h"
@@ -87,7 +83,20 @@ Boston, MA 02111-1307, USA. #include "m_metacontacts.h"
#include "m_variables.h"
#include "m_smileyadd.h"
+#include "m_gender.h"
+#include "resource.h"
+#include "version.h"
+#include "message_pump.h"
+#include "mir_smileys.h"
+#include "popwin.h"
+#include "skin_parser.h"
+#include "bitmap_func.h"
+#include "options.h"
+#include "str_utils.h"
+#include "subst.h"
+#include "preset_items.h"
+#include "translations.h"
#define MODULE "Tipper"
#define MODULE_ITEMS "Tipper_Items"
@@ -101,4 +110,9 @@ extern COLORREF colTitle, colLabels, colBg, colValues; extern int iCodePage;
extern char szMetaModuleName[256];
-extern FI_INTERFACE *fii;
\ No newline at end of file +extern FI_INTERFACE *fii;
+
+extern TOOLTIPSKIN skin;
+extern TCHAR SKIN_FOLDER[256];
+
+extern int ReloadFont(WPARAM wParam, LPARAM lParam);
|