summaryrefslogtreecommitdiffstats
path: root/common/msg.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-16 21:24:39 +0100
committerwm4 <wm4@nowhere>2014-01-16 23:06:40 +0100
commit99ee43b33bec75bb43b4c02060776a67246bacca (patch)
tree59ca4784324dcf8ccdf24bd265b588004de3ebb6 /common/msg.h
parent5b14db5ab1be11f905fbc4afe7fc2e9ff5c29a81 (diff)
downloadmpv-99ee43b33bec75bb43b4c02060776a67246bacca.tar.bz2
mpv-99ee43b33bec75bb43b4c02060776a67246bacca.tar.xz
msg: move special declarations to msg_control.h
While almost everything uses msg.h, the moved definitions are rarely needed by anything.
Diffstat (limited to 'common/msg.h')
-rw-r--r--common/msg.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/common/msg.h b/common/msg.h
index 50420c9044..0ca449cb49 100644
--- a/common/msg.h
+++ b/common/msg.h
@@ -76,16 +76,4 @@ bool mp_msg_test(struct mp_log *log, int lev);
#define MP_TRACE(obj, ...) MP_MSG(obj, MSGL_TRACE, __VA_ARGS__)
#define MP_SMODE(obj, ...) MP_MSG(obj, MSGL_SMODE, __VA_ARGS__)
-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 /* MPLAYER_MP_MSG_H */