| 224 | } |
| 225 | |
| 226 | static void xnLogWriteImpl(const XnChar* csLogMask, XnLogSeverity nSeverity, const XnChar* csFile, XnUInt32 nLine, const XnChar* csFormat, ...) |
| 227 | { |
| 228 | va_list args; |
| 229 | va_start(args, csFormat); |
| 230 | xnLogWriteImplV(csLogMask, nSeverity, csFile, nLine, csFormat, args); |
| 231 | va_end(args); |
| 232 | } |
| 233 | |
| 234 | XN_C_API XnStatus XN_C_DECL xnLogCreateNewFile(const XnChar* strName, XnBool bSessionBased, XnChar* csFullPath, XnUInt32 nPathBufferSize, XN_FILE_HANDLE* phFile) |
| 235 | { |
no test coverage detected