diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-26 12:36:39 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-26 12:36:39 +0300 |
commit | ac6daf28ff621f1bd304fb061fca7b8254c929f4 (patch) | |
tree | 5ce2bdb33f884188835162b2af5d818c726298ac /include | |
parent | f4051cf4da1635d66e8738d65dd6564dc4998df8 (diff) |
DbxSqlite: events.reply_id column added to DBEVENTINFO
Diffstat (limited to 'include')
-rw-r--r-- | include/m_database.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/m_database.h b/include/m_database.h index d21537fc8d..4da69e9c60 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -193,6 +193,7 @@ struct DBEVENTINFO uint8_t *pBlob; // pointer to buffer containing module-defined event data
const char *szId; // server message id
const char *szUserId; // user id (for group chats only)
+ const char *szReplyId; // this message is a reply to a message with that server id
bool __forceinline markedRead() const {
return (flags & (DBEF_SENT | DBEF_READ)) != 0;
|