| 186 | } |
| 187 | |
| 188 | static void xnLogCreateEntry(XnBufferedLogEntry* pEntry, const XnChar* csLogMask, XnLogSeverity nSeverity, const XnChar* csFile, XnUInt32 nLine, const XnChar* csFormat, ...) |
| 189 | { |
| 190 | va_list args; |
| 191 | va_start(args, csFormat); |
| 192 | xnLogCreateEntryV(pEntry, csLogMask, nSeverity, csFile, nLine, csFormat, args); |
| 193 | va_end(args); |
| 194 | } |
| 195 | |
| 196 | static void xnLogWriteEntry(XnLogEntry* pEntry) |
| 197 | { |
no test coverage detected