summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_tokens.h
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-03-06 14:14:44 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-03-06 14:14:44 +0000
commit1fbdd913337cbf235ebe3a2cf52f73b661f3b1cf (patch)
treede142d611e1912ebb315025f506535008b71f51d /apps/gui/skin_engine/skin_tokens.h
parentf79b45d8bb30d80c453f4722b23de31db3b49bf0 (diff)
downloadrockbox-1fbdd913337cbf235ebe3a2cf52f73b661f3b1cf.tar.gz
rockbox-1fbdd913337cbf235ebe3a2cf52f73b661f3b1cf.zip
skin: don't calculate id3->elapsed+state->ff_rewind_count each time. remove trailing spaces.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25045 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/skin_engine/skin_tokens.h')
-rw-r--r--apps/gui/skin_engine/skin_tokens.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.h b/apps/gui/skin_engine/skin_tokens.h
index 2c6dd6b72a..d20a6ee2e6 100644
--- a/apps/gui/skin_engine/skin_tokens.h
+++ b/apps/gui/skin_engine/skin_tokens.h
@@ -23,7 +23,7 @@
23#define _SKIN_TOKENS_H_ 23#define _SKIN_TOKENS_H_
24 24
25#include <stdbool.h> 25#include <stdbool.h>
26 26
27 27
28enum wps_token_type { 28enum wps_token_type {
29 29
@@ -235,13 +235,12 @@ struct wps_token {
235 void* data; 235 void* data;
236 } value; 236 } value;
237}; 237};
238 238
239struct skin_token_list { 239struct skin_token_list {
240 struct wps_token *token; 240 struct wps_token *token;
241 struct skin_token_list *next; 241 struct skin_token_list *next;
242}; 242};
243 243
244char* get_dir(char* buf, int buf_size, const char* path, int level); 244char* get_dir(char* buf, int buf_size, const char* path, int level);
245 245
246#endif 246#endif
247