das ist mir ja auch klar, dass er kein x kennt, aber wo kann ich ihm sagen, was x ist ohne dass er mir es wieder als Fehler anrechnet.
hier der Code:
Delphi-Quellcode:
unit Programm1;
interface
function addiere(zahl1, zahl2: integer): integer;
stdcall;
x:=addiere(12, 3);
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm3 =
class(TForm)
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form3: TForm3;
implementation
function addiere(zahl1, zahl2: integer): integer;
stdcall;
external '
rechnenpro.dll';
{$R *.dfm}
end.