has anyone managed to call gocr from C#?

  • Thread starter Thread starter giddy
  • Start date Start date
G

giddy

hi,

Like i said , has anyone managed to call gocr from C#?

I dont have any idea of C++ , if someone has done something similar or
is familiar with the gocr model, could you give me an idea of how i
should call it from C#?

Gideon
 
Gideon,

Are the functions in the library exported through a DLL? If not, you
have to export those functions (you can't make calls to lib files from .NET)
and then make the calls through the P/Invoke layer.
 
Back
Top