16,742
社区成员
发帖
与我相关
我的任务
分享
[/quote]

/// unit1.pas
unit Unit1;
interface
function a(s:Integer):Integer; stdcall;
implementation
function a(s:Integer):Integer;
begin
result:=s;
end;
end.
/// project1.dpr
library Project1;
uses
SysUtils,
Classes,
Unit1 in 'Unit1.pas';
{$R *.res}
exports a;
begin
end.