| 110 | } |
| 111 | |
| 112 | XN_C_API XnStatus xnNodeQuerySetMaxVersion(XnNodeQuery* pQuery, const XnVersion* pMaxVersion) |
| 113 | { |
| 114 | XN_VALIDATE_INPUT_PTR(pQuery); |
| 115 | XN_VALIDATE_INPUT_PTR(pMaxVersion); |
| 116 | xnOSMemCopy(&pQuery->MaxVersion, pMaxVersion, sizeof(XnVersion)); |
| 117 | return (XN_STATUS_OK); |
| 118 | } |
| 119 | |
| 120 | XN_C_API XnStatus xnNodeQueryAddSupportedCapability(XnNodeQuery* pQuery, const XnChar* strNeededCapability) |
| 121 | { |
no test coverage detected