blob: d82f86e91ef7fc258522934bf582a0cb41e3938b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* seduservice.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: seduservice.c,v 1.3 2012/11/22 18:02:59 wendel Exp $
*/
#include "seduservice.h"
//***************************************************************************
// View Modes
//***************************************************************************
const char* cSeduService::viewModes[] =
{
"atmo",
"fixed color",
"rainbow",
"black",
"detached",
0
};
const char* cSeduService::toName(ViewMode vm)
{
return viewModes[vm];
}
|