| 3111 | } |
| 3112 | |
| 3113 | XN_C_API XnStatus xnGetGeneralIntValue(XnNodeHandle hInstance, const XnChar* strCap, XnInt32* pnValue) |
| 3114 | { |
| 3115 | XnProductionNodeInterfaceContainer* pInterface = hInstance->pModuleInstance->pLoaded->pInterface; |
| 3116 | XnModuleNodeHandle hModuleNode = hInstance->pModuleInstance->hNode; |
| 3117 | XN_VALIDATE_FUNC_PTR(pInterface->GeneralInt.Get); |
| 3118 | return pInterface->GeneralInt.Get(hModuleNode, strCap, pnValue); |
| 3119 | } |
| 3120 | |
| 3121 | XN_C_API XnStatus xnSetGeneralIntValue(XnNodeHandle hInstance, const XnChar* strCap, XnInt32 nValue) |
| 3122 | { |
no test coverage detected