Tagged Questions
2
votes
5answers
2k 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 ...
1
vote
2answers
152 views
What went wrong with my Declare statement?
I've recently fixed a bug in a VB6 application, but I'm not sure, what exactly went wrong.
The offending part was a wrong API declaration of CreateEvent. This is, what API Viewer generated:
Declare ...