From 99ee43b33bec75bb43b4c02060776a67246bacca Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 16 Jan 2014 21:24:39 +0100 Subject: msg: move special declarations to msg_control.h While almost everything uses msg.h, the moved definitions are rarely needed by anything. --- common/msg_control.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 common/msg_control.h (limited to 'common/msg_control.h') diff --git a/common/msg_control.h b/common/msg_control.h new file mode 100644 index 0000000000..3ff53971b7 --- /dev/null +++ b/common/msg_control.h @@ -0,0 +1,18 @@ +#ifndef MP_MSG_CONTROL_H +#define MP_MSG_CONTROL_H + +#include + +struct mpv_global; +void mp_msg_init(struct mpv_global *global); +void mp_msg_uninit(struct mpv_global *global); +void mp_msg_update_msglevels(struct mpv_global *global); +void mp_msg_mute(struct mpv_global *global, bool mute); +void mp_msg_force_stderr(struct mpv_global *global, bool force_stderr); +void mp_msg_flush_status_line(struct mpv_global *global); +bool mp_msg_has_status_line(struct mpv_global *global); + +struct bstr; +int mp_msg_split_msglevel(struct bstr *s, struct bstr *out_mod, int *out_level); + +#endif -- cgit v1.2.3