summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/riscos/options.h b/riscos/options.h
new file mode 100644
index 0000000..b003da1
--- /dev/null
+++ b/riscos/options.h
@@ -0,0 +1,24 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
+ */
+
+/** \file
+ * RISC OS specific options.
+ */
+
+#ifndef _NETSURF_RISCOS_OPTIONS_H_
+#define _NETSURF_RISCOS_OPTIONS_H_
+
+#include "netsurf/desktop/options.h"
+
+extern char *option_language;
+
+#define EXTRA_OPTION_DEFINE \
+char *option_language = 0;\
+
+#define EXTRA_OPTION_TABLE \
+{ "language", OPTION_STRING, &option_language }
+#endif