summaryrefslogtreecommitdiff
path: root/apps/gui/wps_parser.c
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2008-08-29 21:08:38 +0000
committerFrank Gevaerts <frank@gevaerts.be>2008-08-29 21:08:38 +0000
commit5d22e3cbdd251819a4d2d07b9a12994d5aef778d (patch)
tree4c6a81187ccf065a5f296a903b9f7da88503e403 /apps/gui/wps_parser.c
parentcc31b1fbdae455f975b69dd6bffc23d8bd021566 (diff)
downloadrockbox-5d22e3cbdd251819a4d2d07b9a12994d5aef778d.tar.gz
rockbox-5d22e3cbdd251819a4d2d07b9a12994d5aef778d.zip
Add wpseditor, the Google Summer of Code 2008 project of Rostislav Chekan. Closes FS#9327
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18362 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/wps_parser.c')
-rw-r--r--apps/gui/wps_parser.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/apps/gui/wps_parser.c b/apps/gui/wps_parser.c
index 714c419af1..b2baddd747 100644
--- a/apps/gui/wps_parser.c
+++ b/apps/gui/wps_parser.c
@@ -28,14 +28,25 @@
28#include "plugin.h" 28#include "plugin.h"
29 29
30#ifdef __PCTOOL__ 30#ifdef __PCTOOL__
31#ifdef WPSEDITOR
32#include "proxy.h"
33#include "settings.h"
34#include "sysfont.h"
35#include "gwps.h"
36#include "font.h"
37#include "bmp.h"
38#include "backdrop.h"
39#include "ctype.h"
40#else
41#include "checkwps.h"
42#define SYSFONT_HEIGHT 8
31#define DEBUGF printf 43#define DEBUGF printf
44#endif /*WPSEDITOR*/
32#define FONT_SYSFIXED 0 45#define FONT_SYSFIXED 0
33#define FONT_UI 1 46#define FONT_UI 1
34#define SYSFONT_HEIGHT 8
35#include "checkwps.h"
36#else 47#else
37#include "debug.h" 48#include "debug.h"
38#endif 49#endif /*__PCTOOL__*/
39 50
40#ifndef __PCTOOL__ 51#ifndef __PCTOOL__
41#include <ctype.h> 52#include <ctype.h>