summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/config.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-reader/config.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/config.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/noncore/apps/opie-reader/config.h b/noncore/apps/opie-reader/config.h
new file mode 100644
index 0000000..5150270
--- a/dev/null
+++ b/noncore/apps/opie-reader/config.h
@@ -0,0 +1,21 @@
1#ifndef __CONFIG_H
2#define __CONFIG_H
3
4#define _UNICODE
5
6#ifdef _UNICODE
7#include <limits.h>
8
9#define UTF8
10
11typedef unsigned short tchar;
12const tchar UEOF = USHRT_MAX;
13
14#else
15typedef char tchar;
16const int UEOF = -1;
17#endif
18
19#include "ustring.h"
20
21#endif