pascalabcnet/InstallerSamples/!MainFeatures/04_Units/NativeDll/NativeDll.dpr
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

13 lines
150 B
ObjectPascal

// Îòêîìïèëèðîâàòü â Delphi
library NativeDll;
function add(a,b: integer): integer; stdcall;
begin
Result := a+b;
end;
exports
add;
begin
end.