summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c1a97ec)
raw | patch | inline | side by side (parent: c1a97ec)
author | Kalle Wallin <kaw@linux.se> | |
Mon, 5 Apr 2004 08:58:48 +0000 (08:58 +0000) | ||
committer | Kalle Wallin <kaw@linux.se> | |
Mon, 5 Apr 2004 08:58:48 +0000 (08:58 +0000) |
screen.h | patch | blob | history |
diff --git a/screen.h b/screen.h
index 60b253883c287e013761990484279c9fc2a8dc00..452490996fcb351990ea3a7b18a6a729661fc32a 100644 (file)
--- a/screen.h
+++ b/screen.h
#define IS_PLAYING(s) (s==MPD_STATUS_STATE_PLAY)
#define IS_PAUSED(s) (s==MPD_STATUS_STATE_PAUSE)
+#define IS_STOPPED(s) (!(IS_PLAYING(s) | IS_PAUSED(s)))
typedef enum
{
window_t main_window;
window_t progress_window;
window_t status_window;
+
time_t status_timestamp;
+ time_t input_timestamp;
list_window_t *playlist;
list_window_t *filelist;