| 94 | } |
| 95 | |
| 96 | XN_C_API XnStatus xnNodeQuerySetName(XnNodeQuery* pQuery, const XnChar* strName) |
| 97 | { |
| 98 | XN_VALIDATE_INPUT_PTR(pQuery); |
| 99 | XN_VALIDATE_INPUT_PTR(strName); |
| 100 | strncpy(pQuery->strName, strName, XN_MAX_NAME_LENGTH); |
| 101 | return (XN_STATUS_OK); |
| 102 | } |
| 103 | |
| 104 | XN_C_API XnStatus xnNodeQuerySetMinVersion(XnNodeQuery* pQuery, const XnVersion* pMinVersion) |
| 105 | { |
no outgoing calls
no test coverage detected