Tagged Questions
2
votes
5answers
3k views
How to call a Delphi DLL from VB6
Given the following Delphil DLL declaration
function csd_HandleData(aBuf: PChar; aLen: integer): integer; stdcall;
what would be the VB6 declaration to use it?
I've tried a variety of ...