| 126 | } |
| 127 | |
| 128 | XN_C_API XnStatus xnNodeQueryAddSupportedMapOutputMode(XnNodeQuery* pQuery, const XnMapOutputMode* pMapOutputMode) |
| 129 | { |
| 130 | XN_VALIDATE_INPUT_PTR(pQuery); |
| 131 | XN_VALIDATE_INPUT_PTR(pMapOutputMode); |
| 132 | xnOSMemCopy(&pQuery->aSupportedMapOutputModes[pQuery->nSupportedMapOutputModes++], pMapOutputMode, sizeof(XnMapOutputMode)); |
| 133 | return (XN_STATUS_OK); |
| 134 | } |
| 135 | |
| 136 | XN_C_API XnStatus xnNodeQuerySetSupportedMinUserPositions(XnNodeQuery* pQuery, const XnUInt32 nCount) |
| 137 | { |
no test coverage detected