| 1101 | } |
| 1102 | |
| 1103 | XN_C_API XnStatus xnLogCreateFile(const XnChar* csFileName, XN_FILE_HANDLE* phFile) |
| 1104 | { |
| 1105 | XnChar strFullPath[XN_FILE_MAX_PATH]; |
| 1106 | return xnLogCreateNewFile(csFileName, TRUE, strFullPath, XN_FILE_MAX_PATH, phFile); |
| 1107 | } |
| 1108 | |
| 1109 | XN_C_API XnStatus xnLogCreateFileEx(const XnChar* strFileName, XnBool bSessionBased, XN_FILE_HANDLE* phFile) |
| 1110 | { |
nothing calls this directly
no test coverage detected