| 3069 | } |
| 3070 | |
| 3071 | XN_C_API XnStatus xnGetNodeErrorState(XnNodeHandle hInstance) |
| 3072 | { |
| 3073 | XN_VALIDATE_INPUT_PTR(hInstance); |
| 3074 | if (!xnIsCapabilitySupported(hInstance, XN_CAPABILITY_ERROR_STATE)) |
| 3075 | { |
| 3076 | return (XN_STATUS_OK); |
| 3077 | } |
| 3078 | else |
| 3079 | { |
| 3080 | return xnGetNodeErrorStateImpl(hInstance); |
| 3081 | } |
| 3082 | } |
| 3083 | |
| 3084 | XN_C_API XnStatus xnRegisterToNodeErrorStateChange(XnNodeHandle hInstance, XnStateChangedHandler handler, void* pCookie, XnCallbackHandle* phCallback) |
| 3085 | { |
no test coverage detected