On Wed, Aug 06, 2003 at 04:27:25PM +0200, Jan Gehring wrote: > Hello ml, > > i try to use aspell with Visual C++. But when i try to load a dictionary my > application sais: > No word lists can be found for the language "en". > > I installed the Full installer available at > http://aspell.net/win32/files/Aspell-0-50-3-3-Setup.exe > and the english dictionary availabe at: > http://aspell.net/win32/files/Aspell-en-0.50-2-3.exe > > > > This is my Testapplication: > I can compile and run it but it do not find the dictionary for "en". > > > #include "stdafx.h" > #include <pspell/pspell.h>
Isn't that the interface for the old version of Aspell/Pspell? Here's for 0.05.3: http://savannah.gnu.org/download/aspell/manual/user/6_Writing.html > > int main(int argc, char* argv[]) > { > printf("App started.\n"); > PspellConfig *config; > PspellCanHaveError *ret; > config = new_pspell_config(); > pspell_config_replace(config, "language-tag", "en"); > ret = new_pspell_manager(config); > if(pspell_error_number(ret) != 0){ > printf("%s", pspell_error_message(ret)); > return 1; > } > > return 0; > } > -- Bill Moseley [EMAIL PROTECTED] _______________________________________________ Aspell-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/aspell-user
