M
mcs51
Unregistered / Unconfirmed
GUEST, unregistred user!
例如:
library myFunctions;
uses ......
type
small=class
private
public
function small.getVersion:string;stdcall;
end;
function small.getVersion:string;
begin
result := '1.0.0.0';
end;
exports ///这里应该怎么写?????
不要让我翻以前的帖子,网络太慢了.....
library myFunctions;
uses ......
type
small=class
private
public
function small.getVersion:string;stdcall;
end;
function small.getVersion:string;
begin
result := '1.0.0.0';
end;
exports ///这里应该怎么写?????
不要让我翻以前的帖子,网络太慢了.....