summaryrefslogtreecommitdiff
path: root/plugins/Msg_Export/src/stdafx.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-07-25 19:12:09 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-07-25 19:12:09 +0000
commita8e117528d873b0129e832cd6f7f23b4b8a6c3ea (patch)
tree4007e8e3071f6f2199d89bf4021c571cfbfab67a /plugins/Msg_Export/src/stdafx.h
parent374135f479c2bae29f9f1c8883319de6049ba02f (diff)
msg_export: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14700 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Msg_Export/src/stdafx.h')
-rwxr-xr-xplugins/Msg_Export/src/stdafx.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/plugins/Msg_Export/src/stdafx.h b/plugins/Msg_Export/src/stdafx.h
new file mode 100755
index 0000000000..88a0a36c5e
--- /dev/null
+++ b/plugins/Msg_Export/src/stdafx.h
@@ -0,0 +1,59 @@
+
+//This file is part of Msg_Export a Miranda IM plugin
+//Copyright (C)2002 Kennet Nielsen ( http://sourceforge.net/projects/msg-export/ )
+//
+//This program is free software; you can redistribute it and/or
+//modify it under the terms of the GNU General Public License
+//as published by the Free Software Foundation; either
+//version 2 of the License, or (at your option) any later version.
+//
+//This program is distributed in the hope that it will be useful,
+//but WITHOUT ANY WARRANTY; without even the implied warranty of
+//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+//GNU General Public License for more details.
+//
+//You should have received a copy of the GNU General Public License
+//along with this program; if not, write to the Free Software
+//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+#ifndef MSG_EXP_GLOB_H
+#define MSG_EXP_GLOB_H
+
+#include <Windows.h>
+#include <windowsx.h>
+#include <Richedit.h>
+using namespace std;
+#include <Shlobj.h>
+#include <list>
+#include <string>
+#include <map>
+
+#include <newpluginapi.h>
+#include <m_database.h>
+#include <m_clist.h>
+#include <m_langpack.h>
+#include <m_options.h>
+#include <m_history.h>
+#include <m_userinfo.h>
+#include <m_protosvc.h>
+#include <m_timezones.h>
+#include <m_icq.h>
+#include <win2k.h>
+
+#include "utils.h"
+#include "options.h"
+#include "FileViewer.h"
+#include "resource.h"
+#include "version.h"
+
+#define MODULE "Msg_Export"
+#define MSG_BOX_TITEL TranslateT("Miranda NG (Message Export Plugin)")
+#define MS_SHOW_EXPORT_HISTORY "History/ShowExportHistory"
+#define szFileViewDB "FileV_"
+#define WM_RELOAD_FILE (WM_USER+10)
+
+extern HINSTANCE hInstance;
+
+extern MWindowList hInternalWindowList;
+
+#endif \ No newline at end of file