summaryrefslogtreecommitdiff
path: root/plugins/Msg_Export/src/stdafx.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-03-06 20:13:00 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-03-06 20:13:00 +0300
commite787977a76ef3579d0fdd690530aa5c5ee231aff (patch)
tree78ab53b34b712c6a2e7393881254466d07b07a53 /plugins/Msg_Export/src/stdafx.h
parent63ccf9482d4328cbbcf597c137954211f7bd24c2 (diff)
fixes #4273 (Msg_Export to share JSON export format from Import plugin)
Diffstat (limited to 'plugins/Msg_Export/src/stdafx.h')
-rw-r--r--plugins/Msg_Export/src/stdafx.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/plugins/Msg_Export/src/stdafx.h b/plugins/Msg_Export/src/stdafx.h
index 8c22887482..a914349564 100644
--- a/plugins/Msg_Export/src/stdafx.h
+++ b/plugins/Msg_Export/src/stdafx.h
@@ -32,22 +32,22 @@ using namespace std;
#include <map>
#include <newpluginapi.h>
-#include <m_database.h>
-#include <m_metacontacts.h>
#include <m_chat_int.h>
#include <m_clist.h>
#include <m_contacts.h>
+#include <m_db_int.h>
+#include <m_gui.h>
+#include <m_history.h>
+#include <m_icolib.h>
+#include <m_json.h>
#include <m_langpack.h>
+#include <m_metacontacts.h>
#include <m_netlib.h>
#include <m_options.h>
-#include <m_icolib.h>
-#include <m_history.h>
-#include <m_userinfo.h>
#include <m_protosvc.h>
-#include <m_timezones.h>
#include <m_skin.h>
-#include <m_gui.h>
-#include <m_json.h>
+#include <m_timezones.h>
+#include <m_userinfo.h>
#include "utils.h"
#include "options.h"
@@ -66,6 +66,8 @@ struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();
+ CMOption<bool> bUseJson, bAppendNewLine, bReplaceHistory, bUseIntViewer, bUseAngleBrackets, bUseUtf8InNewFiles;
+
int Load() override;
int Unload() override;
};