| 4281 | } |
| 4282 | |
| 4283 | XN_C_API XnStatus xnGetMapOutputMode(XnNodeHandle hInstance, XnMapOutputMode* pOutputMode) |
| 4284 | { |
| 4285 | XN_VALIDATE_INTERFACE_TYPE(hInstance, XN_NODE_TYPE_MAP_GENERATOR); |
| 4286 | XnMapGeneratorInterfaceContainer* pInterface = (XnMapGeneratorInterfaceContainer*)hInstance->pModuleInstance->pLoaded->pInterface; |
| 4287 | XnModuleNodeHandle hModuleNode = hInstance->pModuleInstance->hNode; |
| 4288 | return pInterface->Map.GetMapOutputMode(hModuleNode, pOutputMode); |
| 4289 | } |
| 4290 | |
| 4291 | XN_C_API XnStatus xnRegisterToMapOutputModeChange(XnNodeHandle hInstance, XnStateChangedHandler handler, void* pCookie, XnCallbackHandle* phCallback) |
| 4292 | { |
no test coverage detected