MCPcopy Create free account
hub / github.com/OpenNI/OpenNI / xnLoggerWriteBinaryData

Function xnLoggerWriteBinaryData

Source/OpenNI/XnLog.cpp:913–924  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

911}
912
913XN_C_API void XN_C_DECL xnLoggerWriteBinaryData(XnLogger* pLogger, XnLogSeverity nSeverity, const XnChar* csFile, XnUInt32 nLine, XnUChar* pBinData, XnUInt32 nDataSize, const XnChar* csFormat, ...)
914{
915 if (!xnLoggerIsEnabled(pLogger, nSeverity))
916 return;
917
918 const XnChar* strMask = (const XnChar*)pLogger->pInternal;
919
920 va_list args;
921 va_start(args, csFormat);
922 xnLogWriteBinaryDataImplV(strMask, nSeverity, csFile, nLine, pBinData, nDataSize, csFormat, args);
923 va_end(args);
924}
925
926XN_C_API void XN_C_DECL _xnLoggerClose(XnLogger* pLogger)
927{

Callers

nothing calls this directly

Calls 2

xnLoggerIsEnabledFunction · 0.85

Tested by

no test coverage detected