diff options
Diffstat (limited to 'include/m_db_int.h')
-rw-r--r-- | include/m_db_int.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/m_db_int.h b/include/m_db_int.h index 2fd70ceec5..7a4e3759e4 100644 --- a/include/m_db_int.h +++ b/include/m_db_int.h @@ -134,4 +134,15 @@ __inline static DATABASELINK* FindDatabasePlugin(const TCHAR* ptszFileName) { return (DATABASELINK*)CallService(MS_DB_FIND_PLUGIN, 0, (LPARAM)ptszFileName);
}
+// MS_DB_GET_CURRENT : returns the database pointer for the current profile
+// wParam : 0 (unused)
+// lParam : 0 (unused)
+// returns MIDatabase* of the current profile or NULL on error
+
+#define MS_DB_GET_CURRENT "DB/GetCurrentDb"
+
+__inline static MIDatabase* GetCurrentDatabase(void)
+{ return (MIDatabase*)CallService(MS_DB_GET_CURRENT, 0, 0);
+}
+
#endif // M_DB_INT_H__
|