blob: fb160578c0457c458fbefcbe47c0af9211d55b14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* tools.h: 'EnigmaNG' skin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SKINENIGMA_TOOLS_H
#define __SKINENIGMA_TOOLS_H
#include "common.h"
#define EVENT_CATEGORY "Category: "
#define EVENT_GENRE "Genre: "
std::string parseaux(const char *str);
bool ischaracters(const char *aux, const char *mask);
std::string ExtractAttribute(const char* evDescription, const char* name);
#endif // __SKINENIGMA_TOOLS_H
// vim:et:sw=2:ts=2:
|