| 3559 | } |
| 3560 | |
| 3561 | XN_C_API XnBool xnIsNewDataAvailable(XnNodeHandle hInstance, XnUInt64* pnTimestamp) |
| 3562 | { |
| 3563 | XnUInt64 nTemp; |
| 3564 | if (pnTimestamp == NULL) |
| 3565 | { |
| 3566 | pnTimestamp = &nTemp; |
| 3567 | } |
| 3568 | |
| 3569 | return xnIsNewDataAvailableImpl(hInstance, pnTimestamp); |
| 3570 | } |
| 3571 | |
| 3572 | static XnStatus xnUpdateDataImpl(XnNodeHandle hInstance) |
| 3573 | { |
no test coverage detected