| 63 | } |
| 64 | |
| 65 | OSVR_ReturnCode osvrClientShutdown(OSVR_ClientContext ctx) { |
| 66 | if (nullptr == ctx) { |
| 67 | OSVR_DEV_VERBOSE("Can't delete a null Client Context!"); |
| 68 | return OSVR_RETURN_FAILURE; |
| 69 | } |
| 70 | osvr::common::deleteContext(ctx); |
| 71 | return OSVR_RETURN_SUCCESS; |
| 72 | } |
no test coverage detected