| 154 | } |
| 155 | |
| 156 | XnStatus xnConfigureMapOutputMode(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 157 | { |
| 158 | XnStatus nRetVal = XN_STATUS_OK; |
| 159 | |
| 160 | XnMapOutputMode Mode; |
| 161 | nRetVal = xnXmlReadMapOutputMode(pOpcode, &Mode); |
| 162 | XN_IS_STATUS_OK(nRetVal); |
| 163 | |
| 164 | nRetVal = xnSetMapOutputMode(hNode, &Mode); |
| 165 | XN_IS_STATUS_OK(nRetVal); |
| 166 | |
| 167 | return (XN_STATUS_OK); |
| 168 | } |
| 169 | |
| 170 | XnStatus xnConfigureWaveOutputMode(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 171 | { |
no test coverage detected