System

LOG_ERROR

LOG_ERROR Description Writes an error-level log message. …[in] : Format string and arguments following printf-style syntax.

Read More

LOG_FATAL

LOG_FATAL Description Writes a fatal log message and aborts the program. …[in] : Format string and arguments following printf-style syntax.

Read More

LOG_INFO

LOG_INFO Description Writes an informational log message. …[in] : Format string and arguments following printf-style syntax.

Read More

LogDeinit

LogDeinit Description Shut down logging subsystem and release resources

Read More

LogInit

LogInit Description Initialize logging subsystem

Read More

LogWrite

LogWrite Description Core log message generation function

Read More

SysAbort

SysAbort Description Custom abort function that can be redirected for testing purposes. By default, this calls the standard abort() function. If a callback is set via SysSetAbortCallback, it calls the callback instead.

Read More

SysDestroyProcess

SysDestroyProcess Description Clean up process information and free resources. Process must be completed or terminated before calling this.

Read More

SysGetCurrentProcessId

SysGetCurrentProcessId Description Platform independent method to get current process Id.

Read More

SysGetDirContents

SysGetDirContents Description Read directory contents into a vector. Current contents of the vector will be cleared out.

Read More

SysGetFileSize

SysGetFileSize Description Get size of file without opening it.

Read More

SysGetProcessExitCode

SysGetProcessExitCode Description Get the exit code of a completed process.

Read More

SysMutexDestroy

SysMutexDestroy Description Destroy the provided mutex object. Once a mutex is destroyed, all resources held by it will be freed. Using it after this cal is UB.

Read More

SysSetAbortCallback

SysSetAbortCallback Description Set a custom callback function for SysAbort. If no callback is set, SysAbort will call the standard abort() function.

Read More

SysTerminateProcess

SysTerminateProcess Description Terminate a running process forcefully.

Read More

SysWaitForProcess

SysWaitForProcess Description Wait for a process to complete with optional timeout.

Read More