diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-23 18:50:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-23 18:50:42 +0300 |
commit | 0fcdde09a8e85689d9cfc0764a9015d5d352ff82 (patch) | |
tree | 6afe02302b39b157d4d208a84b27b88a7fb265d8 /include | |
parent | 3bbcf20aa8db080ef1da99e21ef554e8069bff7a (diff) |
new event: ME_DB_EVENT_EDITED
Diffstat (limited to 'include')
-rw-r--r-- | include/m_database.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/m_database.h b/include/m_database.h index 3e911424de..fd861c5036 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -563,6 +563,16 @@ EXTERN_C MIR_APP_DLL(wchar_t*) DbEvent_GetString(DBEVENTINFO *dbei, const char * #define ME_DB_EVENT_ADDED "DB/Event/Added"
+/////////////////////////////////////////////////////////////////////////////////////////
+// DB/Event/Edited event
+// Called when the existing event was changed
+// wParam = (MCONTACT)hContact
+// lParam = (LPARAM)(HANDLE)hDbEvent
+// hDbEvent is a valid handle to the event. hContact is a valid handle to the
+// contact to which hDbEvent refers.
+
+#define ME_DB_EVENT_EDITED "DB/Event/Edited"
+
/////////////////////////////////////////////////////////////////////////////////////////
// DB/Event/FilterAdd (NOTE: Added during 0.3.3+ development!)
// Called **before** a new event is made of a DBEVENTINFO structure, this
|