diff options
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,11 +20,16 @@ class cSchedules; #define STOP '\0' #define ESCAPE '\1' + + #define Asprintf(a, b, c...) void( asprintf(a, b, c) < 0 ? esyslog("memory allocation error - %s", b) : void() ) namespace util { +static const char CATEGORY[] = "Category: "; +static const char GENRE[] = "Genre: "; + extern int AvailableSources[32]; extern int NumberOfAvailableSources; |