24#include "openvr_driver.h"
26static vr::IVRDriverLog *s_pLogFile = NULL;
29ovrd_log_init(vr::IVRDriverLog *pDriverLog)
32 s_pLogFile = vr::VRDriverLog();
37ovrd_log(
const char *fmt, ...) XRT_PRINTF_FORMAT(1, 2);
40ovrd_log(const
char *fmt, ...)
47 vsprintf_s(buf, fmt, args);
49 vsnprintf(buf,
sizeof(buf), fmt, args);
Header holding common defines.