| 911 | } |
| 912 | |
| 913 | XN_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 | |
| 926 | XN_C_API void XN_C_DECL _xnLoggerClose(XnLogger* pLogger) |
| 927 | { |
nothing calls this directly
no test coverage detected