/extensions/spellcheck/hunspell/src/htypes.hxx

http://github.com/zpao/v8monkey · C++ Header · 89 lines · 22 code · 8 blank · 59 comment · 0 complexity · 89d13b684d2c586e8a6b7b9d22ae3edb MD5 · raw file

  1. /******* BEGIN LICENSE BLOCK *******
  2. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. *
  4. * The contents of this file are subject to the Mozilla Public License Version
  5. * 1.1 (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. * http://www.mozilla.org/MPL/
  8. *
  9. * Software distributed under the License is distributed on an "AS IS" basis,
  10. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. * for the specific language governing rights and limitations under the
  12. * License.
  13. *
  14. * The Initial Developers of the Original Code are Kevin Hendricks (MySpell)
  15. * and László Németh (Hunspell). Portions created by the Initial Developers
  16. * are Copyright (C) 2002-2005 the Initial Developers. All Rights Reserved.
  17. *
  18. * Contributor(s): Kevin Hendricks (kevin.hendricks@sympatico.ca)
  19. * David Einstein (deinst@world.std.com)
  20. * László Németh (nemethl@gyorsposta.hu)
  21. * Caolan McNamara (caolanm@redhat.com)
  22. * Davide Prina
  23. * Giuseppe Modugno
  24. * Gianluca Turconi
  25. * Simon Brouwer
  26. * Noll Janos
  27. * Biro Arpad
  28. * Goldman Eleonora
  29. * Sarlos Tamas
  30. * Bencsath Boldizsar
  31. * Halacsy Peter
  32. * Dvornik Laszlo
  33. * Gefferth Andras
  34. * Nagy Viktor
  35. * Varga Daniel
  36. * Chris Halls
  37. * Rene Engelhard
  38. * Bram Moolenaar
  39. * Dafydd Jones
  40. * Harri Pitkanen
  41. * Andras Timar
  42. * Tor Lillqvist
  43. *
  44. * Alternatively, the contents of this file may be used under the terms of
  45. * either the GNU General Public License Version 2 or later (the "GPL"), or
  46. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  47. * in which case the provisions of the GPL or the LGPL are applicable instead
  48. * of those above. If you wish to allow use of your version of this file only
  49. * under the terms of either the GPL or the LGPL, and not to allow others to
  50. * use your version of this file under the terms of the MPL, indicate your
  51. * decision by deleting the provisions above and replace them with the notice
  52. * and other provisions required by the GPL or the LGPL. If you do not delete
  53. * the provisions above, a recipient may use your version of this file under
  54. * the terms of any one of the MPL, the GPL or the LGPL.
  55. *
  56. ******* END LICENSE BLOCK *******/
  57. #ifndef _HTYPES_HXX_
  58. #define _HTYPES_HXX_
  59. #define ROTATE_LEN 5
  60. #define ROTATE(v,q) \
  61. (v) = ((v) << (q)) | (((v) >> (32 - q)) & ((1 << (q))-1));
  62. // hentry options
  63. #define H_OPT (1 << 0)
  64. #define H_OPT_ALIASM (1 << 1)
  65. #define H_OPT_PHON (1 << 2)
  66. // see also csutil.hxx
  67. #define HENTRY_WORD(h) &(h->word[0])
  68. // approx. number of user defined words
  69. #define USERWORD 1000
  70. struct hentry
  71. {
  72. unsigned char blen; // word length in bytes
  73. unsigned char clen; // word length in characters (different for UTF-8 enc.)
  74. short alen; // length of affix flag vector
  75. unsigned short * astr; // affix flag vector
  76. struct hentry * next; // next word with same hash code
  77. struct hentry * next_homonym; // next homonym word (with same hash code)
  78. char var; // variable fields (only for special pronounciation yet)
  79. char word[1]; // variable-length word (8-bit or UTF-8 encoding)
  80. };
  81. #endif