“Unable to find an entry point named [function] in dll” (c++ to c# type conversion)
I have a dll which comes from a third party, which was written in C++. Here is some information that comes from the dll documentation: //start documentation RECO_DATA{ wchar_t Surname[200]; wchar_t Firstname[200]; } Description: Data structure for receiving the function result. All function result will be stored as Unicode (UTF-8). Method: bool recoCHN_P_Name(char *imgPath,RECO_DATA *o_data); Input: char * imgPath the full path of the image location for this function to recognize RECO_DATA * o_data data object for receiving the function result. Function return: True if Success, otherwise false