diff options
author | George Hazan <george.hazan@gmail.com> | 2025-06-06 15:36:02 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-06-06 15:36:07 +0300 |
commit | c1cac0e54f6c6e906cacc4538c79930b7c85669b (patch) | |
tree | 80e13188253331ec68c0ba10d4bae3c5ddbb968b /plugins/Msg_Export/src/utils.h | |
parent | 59c69952e5a14de5e6a4e9d567aaaf0ce7685d86 (diff) |
MsgExport: reactions to be properly exported even in the text mode
Diffstat (limited to 'plugins/Msg_Export/src/utils.h')
-rw-r--r-- | plugins/Msg_Export/src/utils.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/utils.h b/plugins/Msg_Export/src/utils.h index c39b0770ae..12323d13be 100644 --- a/plugins/Msg_Export/src/utils.h +++ b/plugins/Msg_Export/src/utils.h @@ -45,9 +45,13 @@ void DisplayErrorDialog(const wchar_t *pszError, wstring &sFilePath); bool bIsExportEnabled(MCONTACT hContact);
HANDLE openCreateFile(const wstring &sFilePath);
-bool bExportEvent(MCONTACT hContact, MEVENT hDbEvent, HANDLE hFile, const wstring &sFilePath, bool bAppendOnly);
+bool bExportEvent(MCONTACT hContact, MEVENT hDbEvent, HANDLE hFile, const wstring &sFilePath, bool bAppendOnly);
int nExportEvent(WPARAM wparam, LPARAM lparam);
+
+bool bExportReaction(const DB::EventInfo &dbei, const DBEventReaction &p, HANDLE, const wstring &sFilePath);
+int nExportReaction(WPARAM wparam, LPARAM lparam);
+
int nContactDeleted(WPARAM wparam, LPARAM lparam);
wchar_t* GetMyOwnNick(MCONTACT hContact);
|