summaryrefslogtreecommitdiff
path: root/apps/plugins/textviewer/textviewer.h
diff options
context:
space:
mode:
authorYoshihisa Uchida <uchida@rockbox.org>2010-04-14 10:16:00 +0000
committerYoshihisa Uchida <uchida@rockbox.org>2010-04-14 10:16:00 +0000
commit2ca2684ede50f145985ae147ca52aef27f7580b2 (patch)
tree9e7733fbdc4b3022c8bb084921699e1eb34f3ec4 /apps/plugins/textviewer/textviewer.h
parent0d24df8b952c105cf8e532ff48b636bc81945938 (diff)
downloadrockbox-2ca2684ede50f145985ae147ca52aef27f7580b2.zip
rockbox-2ca2684ede50f145985ae147ca52aef27f7580b2.tar.gz
rockbox-2ca2684ede50f145985ae147ca52aef27f7580b2.tar.bz2
rockbox-2ca2684ede50f145985ae147ca52aef27f7580b2.tar.xz
new text viewer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25644 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/textviewer/textviewer.h')
-rw-r--r--apps/plugins/textviewer/textviewer.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/plugins/textviewer/textviewer.h b/apps/plugins/textviewer/textviewer.h
new file mode 100644
index 0000000..7c080f8
--- /dev/null
+++ b/apps/plugins/textviewer/textviewer.h
@@ -0,0 +1,30 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2002 Gilles Roux
+ * 2003 Garrett Derner
+ * 2010 Yoshihisa Uchida
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ****************************************************************************/
+#ifndef PLUGIN_TEXT_VIEWER_TEXTVIEWER_H
+#define PLUGIN_TEXT_VIEWER_TEXTVIEWER_H
+
+/* UTF-8 BOM */
+#define BOM "\xef\xbb\xbf"
+#define BOM_SIZE 3
+
+#endif