summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/hunspell/phonet.hxx
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2016-01-30 17:02:29 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2016-01-30 17:02:29 +0000
commit12b5b6ad28c4ad63991320262c171e0f0ab82505 (patch)
tree88cba348b86cd0340df3487dc21ef94ade46bf10 /plugins/SpellChecker/src/hunspell/phonet.hxx
parent6893a28bd219b45bdf1e2ed5be015bc365d709d9 (diff)
SpellChecker: linked with external hunspell
git-svn-id: http://svn.miranda-ng.org/main/trunk@16194 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/src/hunspell/phonet.hxx')
-rw-r--r--plugins/SpellChecker/src/hunspell/phonet.hxx52
1 files changed, 0 insertions, 52 deletions
diff --git a/plugins/SpellChecker/src/hunspell/phonet.hxx b/plugins/SpellChecker/src/hunspell/phonet.hxx
deleted file mode 100644
index f91d3b02b8..0000000000
--- a/plugins/SpellChecker/src/hunspell/phonet.hxx
+++ /dev/null
@@ -1,52 +0,0 @@
-/* phonetic.c - generic replacement aglogithms for phonetic transformation
- Copyright (C) 2000 Bjoern Jacke
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License version 2.1 as published by the Free Software Foundation;
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; If not, see
- <http://www.gnu.org/licenses/>.
-
- Changelog:
-
- 2000-01-05 Bjoern Jacke <bjoern at j3e.de>
- Initial Release insprired by the article about phonetic
- transformations out of c't 25/1999
-
- 2007-07-26 Bjoern Jacke <bjoern at j3e.de>
- Released under MPL/GPL/LGPL tri-license for Hunspell
-
- 2007-08-23 Laszlo Nemeth <nemeth at OOo>
- Porting from Aspell to Hunspell using C-like structs
-*/
-
-#ifndef __PHONETHXX__
-#define __PHONETHXX__
-
-#define HASHSIZE 256
-#define MAXPHONETLEN 256
-#define MAXPHONETUTF8LEN (MAXPHONETLEN * 4)
-
-#include "hunvisapi.h"
-
-struct phonetable {
- char utf8;
- cs_info * lang;
- int num;
- char * * rules;
- int hash[HASHSIZE];
-};
-
-LIBHUNSPELL_DLL_EXPORTED void init_phonet_hash(phonetable & parms);
-
-LIBHUNSPELL_DLL_EXPORTED int phonet (const char * inword, char * target,
- int len, phonetable & phone);
-
-#endif