| 340 | } |
| 341 | |
| 342 | void XN_CALLBACK_TYPE PlayerImpl::CloseFile(void* pCookie) |
| 343 | { |
| 344 | PlayerImpl* pThis = (PlayerImpl*)pCookie; |
| 345 | if (pThis == NULL) |
| 346 | { |
| 347 | xnLogWarning(XN_MASK_OPEN_NI, "Got NULL cookie"); |
| 348 | return; |
| 349 | } |
| 350 | pThis->CloseFileImpl(); |
| 351 | } |
| 352 | |
| 353 | XnStatus PlayerImpl::OpenFileImpl() |
| 354 | { |
no test coverage detected