| 163 | } |
| 164 | |
| 165 | XN_C_API XnStatus xnNodeQuerySetCreationInfo(XnNodeQuery* pQuery, const XnChar* strCreationInfo) |
| 166 | { |
| 167 | XN_VALIDATE_INPUT_PTR(pQuery); |
| 168 | XN_VALIDATE_INPUT_PTR(strCreationInfo); |
| 169 | strncpy(pQuery->strCreationInfo, strCreationInfo, sizeof(pQuery->strCreationInfo)); |
| 170 | return (XN_STATUS_OK); |
| 171 | } |
| 172 | |
| 173 | static XnBool xnIsInstanceInTree(XnNodeInfo* pNodeInfo, const XnChar* strInstanceName) |
| 174 | { |
no outgoing calls
no test coverage detected