| 2958 | } |
| 2959 | |
| 2960 | XN_C_API XnStatus xnFindExistingNodeByType(XnContext* pContext, XnProductionNodeType type, XnNodeHandle* phNode) |
| 2961 | { |
| 2962 | XnStatus nRetVal = XN_STATUS_OK; |
| 2963 | |
| 2964 | nRetVal = xnFindExistingRefNodeByType(pContext, type, phNode); |
| 2965 | XN_IS_STATUS_OK(nRetVal); |
| 2966 | |
| 2967 | xnProductionNodeRelease(*phNode); |
| 2968 | |
| 2969 | return (XN_STATUS_OK); |
| 2970 | } |
| 2971 | |
| 2972 | //--------------------------------------------------------------------------- |
| 2973 | // State Changes registration translation |
nothing calls this directly
no test coverage detected