I have a vc++ dll which has a funciton call like this :
typedef void * SIS_HANDLE;
EXTERN_C SDK4OpenDevice (SIS_HANDLE* sDev );
Now am trying to call the VC++ dll in VB6 is there any equivalent for the same in VB6.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it’s a pointer-sized integer, which is
Longin VB6. And your function takes a pointer to a pointer, so it will beByRef.Watch out for the calling convention though, if that
EXTERN_Cmacro doesn’t hide a__stdcallor__pascalkeyword, the function can’t be called from VB6 directly.