summaryrefslogtreecommitdiffstats
path: root/libmpv/client.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-08-07 18:05:54 +0200
committerwm4 <wm4@nowhere>2016-08-07 19:33:20 +0200
commit5640ceb838711199b545336a398dcc5ae3205676 (patch)
treeec900da2c93d0656338007801208ce6ef7b08977 /libmpv/client.h
parentcfed84af2be1f95a595fdff7c846248a5e3f9368 (diff)
downloadmpv-5640ceb838711199b545336a398dcc5ae3205676.tar.bz2
mpv-5640ceb838711199b545336a398dcc5ae3205676.tar.xz
client API: add MPV_ERROR_GENERIC
Because why not.
Diffstat (limited to 'libmpv/client.h')
-rw-r--r--libmpv/client.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libmpv/client.h b/libmpv/client.h
index 58606d6e68..b895d600ed 100644
--- a/libmpv/client.h
+++ b/libmpv/client.h
@@ -329,7 +329,11 @@ typedef enum mpv_error {
/**
* The API function which was called is a stub only.
*/
- MPV_ERROR_NOT_IMPLEMENTED = -19
+ MPV_ERROR_NOT_IMPLEMENTED = -19,
+ /**
+ * Unspecified error.
+ */
+ MPV_ERROR_GENERIC = -20
} mpv_error;
/**