摘要: Delphi单元如下(输出hello.dll):unit hellofun;interfacefunction getint():integer;stdcall;function sayhello(var sname:PAnsiChar):PAnsiChar;stdcall;implementationfunction getint():integer;stdcall;begin result:=888;end;function sayhello(var sname:PAnsiChar):PAnsiChar;stdcall;begin sname:='ok!'; result: 阅读全文
posted @ 2013-03-15 19:03 garfieldtom 阅读(2491) 评论(2) 推荐(0)