1 #ifndef MPV_MPV_H
2 #define MPV_MPV_H
3 
4 // This should be accessed by glue code only, never normal code.
5 // The only purpose of this is to make mpv library-safe.
6 // Think hard before adding new members.
7 struct mpv_global {
8     struct mp_log *log;
9     struct m_config_shadow *config;
10     struct mp_client_api *client_api;
11     char *configdir;
12     struct stats_base *stats;
13 };
14 
15 #endif
16