summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_tokens.h
diff options
context:
space:
mode:
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