diff options
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_ieview.inc | 2 | ||||
-rw-r--r-- | plugins/ExternalAPI/m_ieview.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/ExternalAPI/delphi/m_ieview.inc b/plugins/ExternalAPI/delphi/m_ieview.inc index 23993ffe76..5b0a309f68 100644 --- a/plugins/ExternalAPI/delphi/m_ieview.inc +++ b/plugins/ExternalAPI/delphi/m_ieview.inc @@ -132,8 +132,8 @@ type dwData :dword; // dword data e.g. status
bIsMe :bool; // TRUE if the event is related to the user
time :dword; // Time of the event
+ hEvent :TMEVENT; // Database event handle, if present
next :PtagIEVIEWEVENTDATA;
- Text2 :TChar; // Text, usage depends on type of event
end;
PIEVIEWEVENTDATA = PtagIEVIEWEVENTDATA;
TIEVIEWEVENTDATA = TtagIEVIEWEVENTDATA;
diff --git a/plugins/ExternalAPI/m_ieview.h b/plugins/ExternalAPI/m_ieview.h index 6ab950b63e..563ce1542e 100644 --- a/plugins/ExternalAPI/m_ieview.h +++ b/plugins/ExternalAPI/m_ieview.h @@ -123,6 +123,7 @@ struct IEVIEWEVENTDATA uint32_t dwData; // DWORD data e.g. status see IEEDD_* values
int bIsMe; // TRUE if the event is related to the user
uint32_t time; // Time of the event
+ MEVENT hEvent; // Database event handle, if present
IEVIEWEVENTDATA *next;
};
|