summaryrefslogtreecommitdiffstats
path: root/common/global.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--common/global.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/common/global.h b/common/global.h
new file mode 100644
index 0000000..f95cf28
--- /dev/null
+++ b/common/global.h
@@ -0,0 +1,15 @@
+#ifndef MPV_MPV_H
+#define MPV_MPV_H
+
+// This should be accessed by glue code only, never normal code.
+// The only purpose of this is to make mpv library-safe.
+// Think hard before adding new members.
+struct mpv_global {
+ struct mp_log *log;
+ struct m_config_shadow *config;
+ struct mp_client_api *client_api;
+ char *configdir;
+ struct stats_base *stats;
+};
+
+#endif