| 453 | } |
| 454 | |
| 455 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeStringPropChanged(void* pCookie, const XnChar* strNodeName, const XnChar* strPropName, const XnChar* strValue) |
| 456 | { |
| 457 | XN_VALIDATE_INPUT_PTR(pCookie); |
| 458 | PlayerImpl* pThis = (PlayerImpl*)pCookie; |
| 459 | return pThis->SetNodeStringProp(strNodeName, strPropName, strValue); |
| 460 | } |
| 461 | |
| 462 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeGeneralPropChanged(void* pCookie, const XnChar* strNodeName, const XnChar* strPropName, XnUInt32 nBufferSize, const void* pBuffer) |
| 463 | { |
no test coverage detected