All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Loading...
Searching...
No Matches
VuLogHandlerConfig Struct Reference

Public Attributes

VuLogHandlerlogHandler
 Log handler function to report Engine log events.
 
void * clientData
 Client data to pass back when the log handler function is called.
 

Detailed Description

Data structure to configure the handling of Engine log messages.

Member Data Documentation

◆ logHandler

VuLogHandler* logHandler

Log handler function to report Engine log events.

Note
The parameter is ignored if set to NULL. In this case Engine does not have a way to notify its client about log events. The default value is NULL.
The client has to ensure that the handler function is valid for the life-time of the Engine instance.
The log handler will be called on a dedicated Engine thread. The client must make sure to properly synchronize the thread.

◆ clientData

void* clientData

Client data to pass back when the log handler function is called.

Note
Default value is NULL.