| 4219 | } |
| 4220 | |
| 4221 | XnBool xnIsFrameSyncedWithImpl(XnNodeHandle hInstance, XnNodeHandle hOther) |
| 4222 | { |
| 4223 | XN_VALIDATE_INTERFACE_TYPE_RET(hInstance, XN_NODE_TYPE_GENERATOR, FALSE); |
| 4224 | XnGeneratorInterfaceContainer* pInterface = (XnGeneratorInterfaceContainer*)hInstance->pModuleInstance->pLoaded->pInterface; |
| 4225 | XnModuleNodeHandle hModuleNode = hInstance->pModuleInstance->hNode; |
| 4226 | XN_VALIDATE_FUNC_PTR_RET(pInterface->FrameSync.IsFrameSyncedWith, FALSE); |
| 4227 | return pInterface->FrameSync.IsFrameSyncedWith(hModuleNode, hOther); |
| 4228 | } |
| 4229 | |
| 4230 | XN_C_API XnBool xnIsFrameSyncedWith(XnNodeHandle hInstance, XnNodeHandle hOther) |
| 4231 | { |
no test coverage detected