summaryrefslogtreecommitdiffstats
path: root/mpvcore/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/command.h')
-rw-r--r--mpvcore/command.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/mpvcore/command.h b/mpvcore/command.h
index 5ac8c3a8f0..1ac5b6f8f0 100644
--- a/mpvcore/command.h
+++ b/mpvcore/command.h
@@ -22,6 +22,8 @@
struct MPContext;
struct mp_cmd;
+void command_init(struct MPContext *mpctx);
+
void mp_get_osd_mouse_pos(struct MPContext *mpctx, float *x, float *y);
void run_command(struct MPContext *mpctx, struct mp_cmd *cmd);
@@ -30,4 +32,20 @@ void property_print_help(void);
int mp_property_do(const char* name, int action, void* val,
struct MPContext *mpctx);
+const struct m_option *mp_get_property_list(void);
+
+enum mp_event {
+ MP_EVENT_NONE,
+ MP_EVENT_TICK,
+ MP_EVENT_PROPERTY, // char*, property that is changed
+ MP_EVENT_TRACKS_CHANGED,
+ MP_EVENT_START_FILE,
+ MP_EVENT_END_FILE,
+};
+
+void mp_notify(struct MPContext *mpctx, enum mp_event event, void *arg);
+void mp_notify_property(struct MPContext *mpctx, const char *property);
+
+void mp_flush_events(struct MPContext *mpctx);
+
#endif /* MPLAYER_COMMAND_H */