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.)

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.
