diff options
Diffstat (limited to 'include/m_database.h')
-rw-r--r-- | include/m_database.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_database.h b/include/m_database.h index 4dd9e5dd8e..e29b04fa2e 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -695,10 +695,11 @@ namespace DB explicit EventInfo(MEVENT hEvent, bool bFetchBlob = true);
~EventInfo();
- bool fetch(bool bFetchBlob = true);
+ bool fetch(MEVENT hEvent, bool bFetchBlob = true);
void unload();
void wipeNotify();
+ __forceinline MEVENT getEvent() const { return m_hEvent; }
__forceinline operator bool() const { return m_bValid; }
bool isSrmm() const; // could be displayed in a SRMM window
|