Hi,
I have made a dll in visual basic and am trying to
explicitly link to this dll in a Visual C++ client
application, but although i am able to load this dll, i am
unable to get the pointer to one of the function in this
dll using GetProcAddress. Is it a problem with the
datatypes that i have used to declare the function pointer
in VC++ or is it some other problem, please help me out.
Precisly this is how the exported function looks in VB
Public Function RunShow(strFileName As String,
strArrOfInputParams As Variant, strArrOfOuputParams As
Variant) As Boolean
and this is the function pointer i am using in VC++,
typedef bool (CALLBACK* LPRUNSHOW) (CString, CStringArray,
CStringArray);
Regards,
Manoj Pandole