summaryrefslogtreecommitdiff
path: root/utils/wpseditor/libwps/src/wpsstate.h
blob: 148936a481dc00ba64fbc2d68e0bf1015aace694 (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
30
31
32
33
34
#ifndef STATES_H
#define STATES_H
//
struct trackstate
{
    char* title;
    char* artist;
    char* album;
    char* genre_string;
    char* disc_string;
    char* track_string;
    char* year_string;
    char* composer;
    char* comment;
    char* albumartist;
    char* grouping;
    int discnum;
    int tracknum;
    int version;
    int layer;
    int year;

    int length;
    int elapsed;
};

struct wpsstate{
    int volume;
    int fontheight;
    int fontwidth;
    int battery_level;
    int audio_status;
};
#endif