| 181 | } |
| 182 | |
| 183 | XnStatus openDeviceFromXml(const char* csXmlFile, EnumerationErrors& errors) |
| 184 | { |
| 185 | XnStatus nRetVal = XN_STATUS_OK; |
| 186 | |
| 187 | nRetVal = g_Context.InitFromXmlFile(csXmlFile, g_scriptNode, &errors); |
| 188 | XN_IS_STATUS_OK(nRetVal); |
| 189 | |
| 190 | openCommon(); |
| 191 | |
| 192 | return (XN_STATUS_OK); |
| 193 | } |
| 194 | |
| 195 | XnStatus openDeviceFromXmlWithChoice(const char* csXmlFile, EnumerationErrors& errors) |
| 196 | { |
no test coverage detected