Delegate LoggerProc
Represents a function which is called when a logging event occurs.
Namespace: SharpHook.Native
Assembly: SharpHook.dll
Syntax
public delegate void LoggerProc(LogLevel level, IntPtr userData, IntPtr format, IntPtr args);
Parameters
Type | Name | Description |
---|---|---|
LogLevel | level | The log level. |
IntPtr | userData | The data that was passed to SetLoggerProc(LoggerProc, IntPtr). Should not be used. |
IntPtr | format | The format of the log message. |
IntPtr | args | The arguments of the log message. |