summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/myspell/csutil.cxx7
-rw-r--r--src/myspell/csutil.hxx7
2 files changed, 7 insertions, 7 deletions
diff --git a/src/myspell/csutil.cxx b/src/myspell/csutil.cxx
index 6b7e80f..17134f0 100644
--- a/src/myspell/csutil.cxx
+++ b/src/myspell/csutil.cxx
@@ -10,13 +10,6 @@
#include "atypes.hxx"
#include "langnum.hxx"
-// Unicode character encoding information
-struct unicode_info {
- unsigned short c;
- unsigned short cupper;
- unsigned short clower;
-};
-
#ifdef OPENOFFICEORG
# include <unicode/uchar.h>
#else
diff --git a/src/myspell/csutil.hxx b/src/myspell/csutil.hxx
index 7bd0b91..a518b34 100644
--- a/src/myspell/csutil.hxx
+++ b/src/myspell/csutil.hxx
@@ -116,6 +116,13 @@ struct cs_info {
unsigned char cupper;
};
+// Unicode character encoding information
+struct unicode_info {
+ unsigned short c;
+ unsigned short cupper;
+ unsigned short clower;
+};
+
LIBHUNSPELL_DLL_EXPORTED int initialize_utf_tbl();
LIBHUNSPELL_DLL_EXPORTED void free_utf_tbl();
LIBHUNSPELL_DLL_EXPORTED unsigned short unicodetoupper(unsigned short c, int langnum);