diff options
author | George Hazan <george.hazan@gmail.com> | 2025-01-27 16:42:04 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-01-27 16:42:04 +0300 |
commit | d29abce19b35fc0b0c71eaaf2c294b153e309ae9 (patch) | |
tree | 4bd36c5dcdd4733996ffb1cdca530673584042f8 /include/delphi/m_database.inc | |
parent | 184833fc4932e3bb21e5794429a617cc9cca40d7 (diff) |
fixes #4834 (History++: Incorrect timestamps in history after switching to new timestamp format)
Diffstat (limited to 'include/delphi/m_database.inc')
-rw-r--r-- | include/delphi/m_database.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/delphi/m_database.inc b/include/delphi/m_database.inc index dd76270478..aecccbf82e 100644 --- a/include/delphi/m_database.inc +++ b/include/delphi/m_database.inc @@ -28,6 +28,12 @@ const DBEF_RTL = 8; // event contains the right-to-left aligned text
DBEF_UTF = 16; // event contains a text in utf-8
DBEF_ENCRYPTED = 32; // event is encrypted (never reported outside a driver)
+ DBEF_HAS_ID = 64;
+ DBEF_SECURE = 128;
+ DBEF_STRONG = 256;
+ DBEF_BOOKMARK = 512;
+ DBEF_JSON = 1024;
+ DBEF_MSEC = 2048;
const
EVENTTYPE_MESSAGE = 0;
|