码迷,mamicode.com
首页 > 其他好文 > 详细

Delphi DLL 字符串传递例子

时间:2014-09-22 20:16:33      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   cti   on   c   r   bs   

library EN;
uses
  SysUtils,
  Classes,
  UnitFormEN in ‘UnitFormEN.pas‘ {FormEN};
{$R *.res}
function GetJobType(p: PChar): Boolean; stdcall;
var
  str: string;
begin
  str := ‘我们是中国人,我们爱自己的祖国.‘;
  StrCopy(p, PChar(str));
  Result := Length(p) > Length(str);
end;

function GetRates(p: PChar): Boolean; stdcall;
var
  str: string;
begin
  str := ‘我爱北京天安门.‘;
  StrCopy(p, PChar(str));
  Result := Length(p) > Length(str);
end;

exports
  GetJobType,
  GetRates,
  ShowFormEN;

begin
end.

Delphi DLL 字符串传递例子

标签:io   ar   for   sp   cti   on   c   r   bs   

原文地址:http://my.oschina.net/u/582827/blog/317099

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!