Example #1
0
 public void Hunspell_free_list(IntPtr handle, ref IntPtr list, int count)
 {
     NativeLibhunspell_1_3_0.Hunspell_free_list(handle, ref list, count);
 }
Example #2
0
 public int Hunspell_suggest(IntPtr handle, byte[] word, out IntPtr suggestions)
 {
     return(NativeLibhunspell_1_3_0.Hunspell_suggest_unix(handle, out suggestions, word));
 }
Example #3
0
 public int Hunspell_remove(IntPtr handle, byte[] word)
 {
     return(NativeLibhunspell_1_3_0.Hunspell_remove(handle, word));
 }
Example #4
0
 public int Hunspell_add_with_affix(IntPtr handle, byte[] word, byte[] example)
 {
     return(NativeLibhunspell_1_3_0.Hunspell_add_with_affix(handle, word, example));
 }
Example #5
0
 public void Hunspell_uninitialize(IntPtr handle)
 {
     NativeLibhunspell_1_3_0.Hunspell_uninitialize(handle);
 }
Example #6
0
 public IntPtr Hunspell_initialize(byte[] affFile, byte[] dictFile)
 {
     return(NativeLibhunspell_1_3_0.Hunspell_initialize(affFile, dictFile));
 }