summaryrefslogtreecommitdiff
path: root/utils/wpseditor/libwps/src/wpsstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/wpseditor/libwps/src/wpsstate.h')
-rw-r--r--utils/wpseditor/libwps/src/wpsstate.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/utils/wpseditor/libwps/src/wpsstate.h b/utils/wpseditor/libwps/src/wpsstate.h
deleted file mode 100644
index 3fa36436e2..0000000000
--- a/utils/wpseditor/libwps/src/wpsstate.h
+++ /dev/null
@@ -1,55 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Rostilav Checkan
10 * $Id$
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef STATES_H
23#define STATES_H
24//
25struct trackstate
26{
27 char* title;
28 char* artist;
29 char* album;
30 char* genre_string;
31 char* disc_string;
32 char* track_string;
33 char* year_string;
34 char* composer;
35 char* comment;
36 char* albumartist;
37 char* grouping;
38 int discnum;
39 int tracknum;
40 int version;
41 int layer;
42 int year;
43
44 int length;
45 int elapsed;
46};
47
48struct wpsstate{
49 int volume;
50 int fontheight;
51 int fontwidth;
52 int battery_level;
53 int audio_status;
54};
55#endif