diff options
Diffstat (limited to 'src/mir_app/src/db_intf.cpp')
-rw-r--r-- | src/mir_app/src/db_intf.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mir_app/src/db_intf.cpp b/src/mir_app/src/db_intf.cpp index f3b445a4fa..082eea3fe6 100644 --- a/src/mir_app/src/db_intf.cpp +++ b/src/mir_app/src/db_intf.cpp @@ -71,6 +71,7 @@ MIR_APP_EXPORT HANDLE g_hevMarkedRead, // ME_DB_EVENT_MARKED_READ
g_hevEventAdded, // ME_DB_EVENT_ADDED
g_hevEventEdited, // ME_DB_EVENT_EDITED
+ g_hevEventSetJson, // ME_DB_EVENT_SETJSON
g_hevEventDeleted, // ME_DB_EVENT_DELETED
g_hevEventDelivered, // ME_DB_EVENT_DELIVERED
g_hevEventFiltered;
@@ -86,6 +87,7 @@ int LoadDbintfModule() g_hevEventAdded = CreateHookableEvent(ME_DB_EVENT_ADDED);
g_hevEventEdited = CreateHookableEvent(ME_DB_EVENT_EDITED);
g_hevEventDeleted = CreateHookableEvent(ME_DB_EVENT_DELETED);
+ g_hevEventSetJson = CreateHookableEvent(ME_DB_EVENT_SETJSON);
g_hevEventDelivered = CreateHookableEvent(ME_DB_EVENT_DELIVERED);
g_hevEventFiltered = CreateHookableEvent(ME_DB_EVENT_FILTER_ADD);
|