| 3551 | } |
| 3552 | |
| 3553 | XnBool xnIsNewDataAvailableImpl(XnNodeHandle hInstance, XnUInt64* pnTimestamp) |
| 3554 | { |
| 3555 | XN_VALIDATE_INTERFACE_TYPE_RET(hInstance, XN_NODE_TYPE_GENERATOR, FALSE); |
| 3556 | XnGeneratorInterfaceContainer* pInterface = (XnGeneratorInterfaceContainer*)hInstance->pModuleInstance->pLoaded->pInterface; |
| 3557 | XnModuleNodeHandle hModuleNode = hInstance->pModuleInstance->hNode; |
| 3558 | return pInterface->Generator.IsNewDataAvailable(hModuleNode, pnTimestamp); |
| 3559 | } |
| 3560 | |
| 3561 | XN_C_API XnBool xnIsNewDataAvailable(XnNodeHandle hInstance, XnUInt64* pnTimestamp) |
| 3562 | { |
no test coverage detected