Mercurial > audlegacy-plugins
comparison src/Input/console/Audacious_Config.h @ 0:13389e613d67 trunk
[svn] - initial import of audacious-plugins tree (lots to do)
| author | nenolod |
|---|---|
| date | Mon, 18 Sep 2006 01:11:49 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:13389e613d67 |
|---|---|
| 1 /* | |
| 2 * Audacious: Cross platform multimedia player | |
| 3 * Copyright (c) 2005 Audacious Team | |
| 4 * | |
| 5 * Driver for Game_Music_Emu library. See details at: | |
| 6 * http://www.slack.net/~ant/libs/ | |
| 7 */ | |
| 8 | |
| 9 | |
| 10 #ifndef CONSOLE_AUDACIOUS_CONFIG_H | |
| 11 #define CONSOLE_AUDACIOUS_CONFIG_H 1 | |
| 12 | |
| 13 #include <glib.h> | |
| 14 | |
| 15 | |
| 16 typedef struct { | |
| 17 gint loop_length; // length of tracks that lack timing information | |
| 18 gboolean resample; // whether or not to resample | |
| 19 gint resample_rate; // rate to resample at | |
| 20 gboolean nsfe_playlist; // if true, use optional NSFE playlist | |
| 21 gint treble; // -100 to +100 | |
| 22 gint bass; // -100 to +100 | |
| 23 gboolean ignore_spc_length; // if true, ignore length from SPC tags | |
| 24 } | |
| 25 AudaciousConsoleConfig; | |
| 26 | |
| 27 extern AudaciousConsoleConfig audcfg; | |
| 28 | |
| 29 extern "C" { | |
| 30 void console_cfg_load( void ); | |
| 31 void console_cfg_save( void ); | |
| 32 void console_cfg_ui( void ); | |
| 33 } | |
| 34 | |
| 35 #endif /* !CONSOLE_AUDACIOUS_CONFIG_H */ |
