Builder C++ calling VC++ class
问题 I have compiled a Hunspell DLL with VC++ which contains a class... Now I want to call that DLL in Builder C++ 2006 to use its functions...how I can do that? I tried with: typedef Hunspell * (CALLBACK *fpoint)(char *aff_file, char *dict_file); fp pHunspell = (fp)GetProcAddress(handle_Hunspell, "hunspell_initialize"); if (pHunspell) { Hunspell* obj = (Hunspell *)pHunspell("..\hunspelldic\en_US.aff", "..\hunspelldic\en_US.dic"); obj->add_dic("..\hunspelldic\it_IT.aff", "..\hunspelldic\it_IT.dic"