| 155 | } |
| 156 | |
| 157 | XN_C_API XnStatus xnNodeQueryAddNeededNode(XnNodeQuery* pQuery, const XnChar* strInstanceName) |
| 158 | { |
| 159 | XN_VALIDATE_INPUT_PTR(pQuery); |
| 160 | XN_VALIDATE_INPUT_PTR(strInstanceName); |
| 161 | pQuery->astrNeededNodes[pQuery->nNeededNodes++] = xnOSStrDup(strInstanceName); |
| 162 | return (XN_STATUS_OK); |
| 163 | } |
| 164 | |
| 165 | XN_C_API XnStatus xnNodeQuerySetCreationInfo(XnNodeQuery* pQuery, const XnChar* strCreationInfo) |
| 166 | { |
no test coverage detected