diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-24 13:54:34 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-24 13:54:34 +0000 |
commit | 6d48c17d8555d18288c26967d8c013de36fce676 (patch) | |
tree | a18d0b55ed96e6650ea13db3a5fa4f3e529703fe /plugins/FileAsMessage/src/main.h | |
parent | b5f57615680d9cf6d8fd890df48efb71fa4bc299 (diff) |
added precompiled header
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3751 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage/src/main.h')
-rw-r--r-- | plugins/FileAsMessage/src/main.h | 43 |
1 files changed, 19 insertions, 24 deletions
diff --git a/plugins/FileAsMessage/src/main.h b/plugins/FileAsMessage/src/main.h index 0962966a70..1eaf667d19 100644 --- a/plugins/FileAsMessage/src/main.h +++ b/plugins/FileAsMessage/src/main.h @@ -3,32 +3,27 @@ #define _WIN32_WINNT 0x0501
#include <windows.h>
-#include <stdio.h>
-#include <time.h>
+#include <io.h>
+#include <fcntl.h>
#include <commctrl.h>
-#include "newpluginapi.h"
-#include "m_system.h"
-#include "m_database.h"
-#include "m_protomod.h"
-#include "m_protosvc.h"
-#include "m_langpack.h"
-#include "m_clist.h"
-#include "m_options.h"
-#include "m_clui.h"
-#include "m_clc.h"
-#include "m_utils.h"
-#include "m_skin.h"
-#include "m_popup.h"
-#include "m_icolib.h"
-#include "m_message.h"
-#include "m_button.h"
-#include "m_netlib.h"
-#include "m_file.h"
-#include "win2k.h"
+#include <newpluginapi.h>
+#include <m_database.h>
+#include <m_protomod.h>
+#include <m_langpack.h>
+#include <m_clist.h>
+#include <m_options.h>
+#include <m_skin.h>
+#include <m_popup.h>
+#include <m_icolib.h>
+#include <m_button.h>
+#include <m_netlib.h>
+#include <m_file.h>
+#include <win2k.h>
#include "dialog.h"
#include "resource.h"
+#include "version.h"
#define MAXBUFSIZE 4096
#define SERVICE_TITLE LPGEN("File As Message")
@@ -36,10 +31,9 @@ #define SERVICE_PREFIX "<%fAM-0023%>"
-#define PLUGIN_URL "http://miranda-ng.org/"
#define NOPLUGIN_MESSAGE LPGEN("\nIf you see this \"garbage\", probably you "\
"have no \"fileAsMessage\" plugin installed, see "\
- PLUGIN_URL " for more information and download.")
+ "http://miranda-ng.org/ for more information and download.")
extern char *szServiceTitle;
extern char *szServicePrefix;
extern const ulong INITCRC;
@@ -54,4 +48,5 @@ extern HANDLE hEventNewFile; extern HICON hIcons[5];
-ulong memcrc32(uchar *ptr, int size, ulong crc );
\ No newline at end of file +ulong memcrc32(uchar *ptr, int size, ulong crc);
+INT_PTR CALLBACK OptionsDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|