diff options
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/src/settings.h b/src/settings.h index 3bbeaa6..91ea8fe 100644 --- a/src/settings.h +++ b/src/settings.h @@ -70,6 +70,13 @@ typedef enum {  	BAR_SORT_COUNT = 6,  } BarStationSorting_t; +#include "ui_types.h" + +typedef struct { +	char *prefix; +	char *postfix; +} BarMsgFormatStr_t; +  typedef struct {  	unsigned int history;  	int volume; @@ -84,6 +91,9 @@ typedef struct {  	char *eventCmd;  	char *loveIcon;  	char *banIcon; +	char *npSongFormat; +	char *npStationFormat; +	BarMsgFormatStr_t msgFormat[MSG_COUNT];  } BarSettings_t;  void BarSettingsInit (BarSettings_t *); | 
