本文整理自网络,侵删。
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;
beginend.
相关阅读 >>
Delphi中的处理事件 application.processmessages
Delphi 用cxgrid把数据导出到excel时乱码的解决办法
Delphi idhttp中get 图像链接通过memorystream加载 image控件显示
更多相关阅读请进入《Delphi》频道 >>