| 118 | } |
| 119 | |
| 120 | XN_C_API XnStatus xnNodeQueryAddSupportedCapability(XnNodeQuery* pQuery, const XnChar* strNeededCapability) |
| 121 | { |
| 122 | XN_VALIDATE_INPUT_PTR(pQuery); |
| 123 | XN_VALIDATE_INPUT_PTR(strNeededCapability); |
| 124 | pQuery->astrSupportedCapabilities[pQuery->nSupportedCapabilities++] = xnOSStrDup(strNeededCapability); |
| 125 | return (XN_STATUS_OK); |
| 126 | } |
| 127 | |
| 128 | XN_C_API XnStatus xnNodeQueryAddSupportedMapOutputMode(XnNodeQuery* pQuery, const XnMapOutputMode* pMapOutputMode) |
| 129 | { |
no test coverage detected