The OpenEventLog function opens a handle of an event log.
HANDLE OpenEventLog(
LPCTSTR lpUNCServerName, |
// pointer to server name |
LPCTSTR lpSourceName |
// pointer to source name |
); |
HKEY_LOCAL_MACHINE System CurrentControlSet Services EventLog Application WinApp Security System
If the source name cannot be found, the event logging service uses the Application logfile with no message files for the event identifier or category.
If the function succeeds, the return value is the handle of an event log.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
ClearEventLog, CloseEventLog, GetNumberOfEventLogRecords, GetOldestEventLogRecord, ReadEventLog, ReportEvent
See:
Comments: