| 142 | } |
| 143 | |
| 144 | XnStatus resolveModulesFile(XnChar* strFileName, XnUInt32 nBufSize) |
| 145 | { |
| 146 | XnStatus nRetVal = XN_STATUS_OK; |
| 147 | |
| 148 | nRetVal = xnGetOpenNIConfFilesPath(strFileName, nBufSize); |
| 149 | XN_IS_STATUS_OK(nRetVal); |
| 150 | |
| 151 | nRetVal = xnOSStrAppend(strFileName, "modules.xml", nBufSize); |
| 152 | XN_IS_STATUS_OK(nRetVal); |
| 153 | |
| 154 | return (XN_STATUS_OK); |
| 155 | } |
| 156 | |
| 157 | XnStatus loadModulesFile(TiXmlDocument& doc) |
| 158 | { |
no test coverage detected