MPV_ERROR_SUCCESS constant

int const MPV_ERROR_SUCCESS

No error happened (used to signal successful operation). Keep in mind that many API functions returning error codes can also return positive values, which also indicate success. API users can hardcode the fact that ">= 0" means success.

Implementation

static const int MPV_ERROR_SUCCESS = 0;