| 170 | } |
| 171 | |
| 172 | XnStatus openDeviceFile(const char* csFile) |
| 173 | { |
| 174 | XnStatus nRetVal = g_Context.Init(); |
| 175 | XN_IS_STATUS_OK(nRetVal); |
| 176 | nRetVal = g_Context.OpenFileRecording(csFile, g_Player); |
| 177 | XN_IS_STATUS_OK(nRetVal); |
| 178 | openCommon(); |
| 179 | |
| 180 | return XN_STATUS_OK; |
| 181 | } |
| 182 | |
| 183 | XnStatus openDeviceFromXml(const char* csXmlFile, EnumerationErrors& errors) |
| 184 | { |
no test coverage detected