У меня небольшая проблемма с добавлением
модуля Delphi:
- Код: Выделить всё
library project2;
uses
SysUtils,
Classes;
{$R *.res}
function xk(x:integer):integer;
begin
result:=sqr(x)
end;
exports xk;
begin
end.
Объявляю:
- Код: Выделить всё
Private Declare Function xk Lib "d:\PROJECT2.DLL" _
(x As Integer) As Integer
А вот редультат:
- Код: Выделить всё
error 49: Bad DLL calling convention