diff options
| author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2011-10-10 01:39:18 +0000 |
|---|---|---|
| committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2011-10-10 01:39:18 +0000 |
| commit | e9bf8a6e2d782dc480fb97cb59928c8cfe1dd777 (patch) | |
| tree | 12bb8ebaab13ef1476ce9343482796c901ee0130 /Plugins/spellchecker/hunspell/baseaffix.hxx | |
| parent | f574681d9b6fee0d05319af1831620e48cc8492f (diff) | |
Moved files from BerliOS
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@229 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/spellchecker/hunspell/baseaffix.hxx')
| -rw-r--r-- | Plugins/spellchecker/hunspell/baseaffix.hxx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Plugins/spellchecker/hunspell/baseaffix.hxx b/Plugins/spellchecker/hunspell/baseaffix.hxx new file mode 100644 index 0000000..ed64f3d --- /dev/null +++ b/Plugins/spellchecker/hunspell/baseaffix.hxx @@ -0,0 +1,28 @@ +#ifndef _BASEAFF_HXX_ +#define _BASEAFF_HXX_ + +#include "hunvisapi.h" + +class LIBHUNSPELL_DLL_EXPORTED AffEntry +{ +protected: + char * appnd; + char * strip; + unsigned char appndl; + unsigned char stripl; + char numconds; + char opts; + unsigned short aflag; + union { + char conds[MAXCONDLEN]; + struct { + char conds1[MAXCONDLEN_1]; + char * conds2; + } l; + } c; + char * morphcode; + unsigned short * contclass; + short contclasslen; +}; + +#endif |
