1 #ifndef	__HUD_INDICATORS_H
2 #define	__HUD_INDICATORS_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 extern int show_hud_indicators;
9 void init_hud_indicators(void);
10 void destroy_hud_indicators(void);
11 void show_hud_indicators_window(void);
12 void hide_hud_indicators_window(void);
13 void toggle_hud_indicators_window(int *show);
14 void set_settings_hud_indicators(unsigned int opts, unsigned int pos);
15 void get_settings_hud_indicators(unsigned int *opts, unsigned int *pos);
16 #ifdef JSON_FILES
17 void write_settings_hud_indicators(const char *dict_name);
18 void read_settings_hud_indicators(const char *dict_name);
19 #endif
20 int get_hud_indicators_default_width(void);
21 
22 #ifdef __cplusplus
23 } // extern "C"
24 #endif
25 
26 #endif	//__HUD_INDICATORS_H
27