comparison src/audacious/audconfig.h @ 4411:628926f505f8

BmpConfig -> AudConfig, etc.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 31 Mar 2008 06:25:09 +0300
parents 8cb646ddae62
children 180996fcf12a
comparison
equal deleted inserted replaced
4410:82f323bd68fc 4411:628926f505f8
24 */ 24 */
25 25
26 #ifndef BMPCONFIG_H 26 #ifndef BMPCONFIG_H
27 #define BMPCONFIG_H 27 #define BMPCONFIG_H
28 28
29 struct _BmpConfig { 29 struct _AudConfig {
30 gint player_x, player_y; 30 gint player_x, player_y;
31 gint equalizer_x, equalizer_y; 31 gint equalizer_x, equalizer_y;
32 gint playlist_x, playlist_y; 32 gint playlist_x, playlist_y;
33 gint playlist_width, playlist_height; 33 gint playlist_width, playlist_height;
34 gint snap_distance; 34 gint snap_distance;
133 gint src_type; 133 gint src_type;
134 #endif 134 #endif
135 gboolean bypass_dsp; 135 gboolean bypass_dsp;
136 }; 136 };
137 137
138 typedef struct _BmpConfig BmpConfig; 138 typedef struct _AudConfig AudConfig;
139 139
140 extern BmpConfig cfg; 140 extern AudConfig cfg;
141 extern BmpConfig bmp_default_config; 141 extern AudConfig aud_default_config;
142 142
143 void bmp_config_free(void); 143 void bmp_config_free(void);
144 void bmp_config_load(void); 144 void bmp_config_load(void);
145 void bmp_config_save(void); 145 void bmp_config_save(void);
146 146