vote up 1 vote down star

Here is the Delphi code calling the C++ dll...

implementation

{$R *.DFM}

procedure CallMe(x: Integer); stdcall; external 'CppWrapper.dll';

procedure TForm1.Button1Click(Sender: TObject); begin
     CallMe(1); end;

end.

Here is the error message...(Access Violation at 00000001. Read of Address 00000001.) alt text

The CallMe procedure executes but after execution I receive the error message. I do have the C++ code if I need to post it as well.

flag

3  
Yes, please provide the C++ code - at the very least, the function declaration. I strongly suspect calling convention mismatch. – Pavel Minaev Aug 14 at 20:01
That was it... Wow I can't believe I missed that. Thank you! Please change to answer so I can accept it. – beef Aug 14 at 20:06

1 Answer

vote up 3 vote down check

Make sure that your C++ function is declared as __stdcall.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.