diff options
author | George Hazan <george.hazan@gmail.com> | 2024-10-19 20:06:12 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-10-19 20:06:12 +0300 |
commit | b6926beda6415e0a53915cc2541c75daa768e05a (patch) | |
tree | ef9bb5002f968dddf10c0b0316c20131238722a7 /protocols/Telegram/src/proto.h | |
parent | 83de2b9e7e2023835c452c127fed667df86e6d22 (diff) |
Telegram: an option not to store channel messages
Diffstat (limited to 'protocols/Telegram/src/proto.h')
-rw-r--r-- | protocols/Telegram/src/proto.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/protocols/Telegram/src/proto.h b/protocols/Telegram/src/proto.h index a2bebd4b71..3b47eb22c0 100644 --- a/protocols/Telegram/src/proto.h +++ b/protocols/Telegram/src/proto.h @@ -436,17 +436,18 @@ public: // Options /////////////////////////////////////////////////////////////////////////// - CMOption<uint32_t> m_iCountry; // set this status to m_iStatus1 after this interval of secs - CMOption<wchar_t*> m_szOwnPhone; // our own phone number - CMOption<wchar_t*> m_wszDefaultGroup; // clist group to store contacts - CMOption<wchar_t*> m_wszDeviceName; // how do you see this session in Device List - CMOption<bool> m_bHideGroupchats; // do not open chat windows on creation + CMOption<uint32_t> m_iCountry; // set this status to m_iStatus1 after this interval of secs + CMOption<wchar_t*> m_szOwnPhone; // our own phone number + CMOption<wchar_t*> m_wszDefaultGroup; // clist group to store contacts + CMOption<wchar_t*> m_wszDeviceName; // how do you see this session in Device List + CMOption<bool> m_bHideGroupchats; // do not open chat windows on creation CMOption<bool> m_bUsePopups; - CMOption<bool> m_bIncludePreviews; // include URL previews into message text - CMOption<bool> m_bCompressFiles; // embed pictures & videos into a message on send - CMOption<uint32_t> m_iTimeDiff1; // set this status to m_iStatus1 after this interval of secs + CMOption<bool> m_bIncludePreviews; // include URL previews into message text + CMOption<bool> m_bResidentChannels; // don't store channel messages in a database + CMOption<bool> m_bCompressFiles; // embed pictures & videos into a message on send + CMOption<uint32_t> m_iTimeDiff1; // set this status to m_iStatus1 after this interval of secs CMOption<uint32_t> m_iStatus1; - CMOption<uint32_t> m_iTimeDiff2; // set this status to m_iStatus2 after this interval of secs + CMOption<uint32_t> m_iTimeDiff2; // set this status to m_iStatus2 after this interval of secs CMOption<uint32_t> m_iStatus2; // Processing Threads //////////////////////////////////////////////////////////////// |