diff options
author | George Hazan <ghazan@miranda.im> | 2020-04-25 17:34:57 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-04-25 17:34:57 +0300 |
commit | 7378dd16f14d3f9f34cde4a18859d406cd303a22 (patch) | |
tree | c2cd180be03f9df961ed4145ed037071775e5c1d /include/m_database.h | |
parent | 6ea21b88c16c553aa97e2cd53266ffd4a689d581 (diff) |
DBEF_TEMPORARY - new flag to disable event notification about event addition
Diffstat (limited to 'include/m_database.h')
-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 c49ed1a270..f9ef17b29d 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -160,6 +160,7 @@ struct DBVARIANT };
};
+#define DBEF_TEMPORARY 1 // disable notifications about temporary database events
#define DBEF_SENT 2 // this event was sent by the user. If not set this event was received.
#define DBEF_READ 4 // event has been read by the user. It does not need to be processed any more except for history.
#define DBEF_RTL 8 // event contains the right-to-left aligned text
|