标签:hat load key variant shared 语句 orm sys mem
https://www.cnblogs.com/delphi7456/p/5365892.html
当使用了长字符串类型的参数、变量时,如string,要引用ShareMem。
下面通过一个项目示例来讲解怎么使用ShareMem。
先新建一个DLL项目,然后再新建一个Unit1单元。
library Project2;
{ Important note about DLL memory management: ShareMem must be the
first unit in your library‘s USES clause AND your project‘s (select
Project-View Source) USES clause if your DLL exports any procedures or
functions that pass strings as parameters or function results. This
applies to all strings passed to and from your DLL--even those that
are nested in records and classes. ShareMem is the interface unit to
the BORLNDMM.DLL shared memory manager, which must be deployed along
with your DLL. To avoid using BORLNDMM.DLL, pass string information
using PChar or ShortString parameters. }
uses
ShareMem,
SysUtils,
Classes,
Unit1 in ‘Unit1.pas‘;
{$R *.res}
exports
test;
begin
end.
unit Unit1;
interface
function test(const input: string): string; stdcall;
implementation
function test(input: string): string; stdcall;
begin
Result:= ‘我是DLL中的test函数,输入是:‘ + input;
end;
end.
1. 因为DLL中使用到string类型,所以一定要引入ShareMem单元。如果没有用到string就不需要ShareMem,但是为了保险起见,还是建议引入ShareMem单元
2. 以这个项目为例,注意要在DLL的项目文件中引入ShareMem单元,而不是在函数的声明和实现单元Unit1里面引入ShareMem单元
3. 在项目文件中可能会引入很多单元,但是ShareMem单元一定要第一个引入,为了第一个加载
先新建一个项目,然后再新建一个Unit1单元。
上面的那个DLL的项目编译生成了Project2.dll动态链接库,将该动态链接库文件放到这个可执行项目的项目目录下方便加载
program Project1;
uses
ShareMem,
Forms,
Unit1 in ‘Unit1.pas‘ {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
btn1: TButton;
procedure btn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.btn1Click(Sender: TObject);
type
TAddc= function(const input: string): string; stdcall;
var
hh: THandle;
addc: TAddc;
begin
hh:= LoadLibrary(‘Project2.dll‘);
try
if hh<>0 then
@addc:= GetProcAddress(hh, PChar(‘test‘));
if not (@addc = nil) then
begin
ShowMessage(addc(‘lsls‘));
end;
finally
FreeLibrary(hh);
end;
end;
end.
这个可执行项目加载了上面的DLL,而上面的那个DLL里面使用到了string,所以这个项目文件中也需要引入ShareMem单元。
1. 加载了使用string的DLL的项目也需要引入ShareMem。如果没有用到string就不需要ShareMem,但是为了保险起见,还是建议引入ShareMem单元
2. 以这个项目为例,注意要在该可执行项目文件中引入ShareMem单元,而不是在函数的声明和实现单元Unit1里面引入ShareMem单元
3. 在项目文件中可能会引入很多单元,但是ShareMem单元一定要第一个引入,为了第一个加载
因为我在可执行项目中引入ShareMem单元时候没有注意到应该在项目文件而不是在单元文件中引入,所以在编译执行之后,可以正确运行,但是当关闭程序的时候却报错,如下图
报错:不合法的指针。
将引入ShareMem单元的引入改到项目文件而不是在单元文件中,然后问题就解决了。
Delphi在创建和使用DLL的时候如果使用到string,请引入ShareMem单元
标签:hat load key variant shared 语句 orm sys mem
原文地址:http://www.cnblogs.com/manhuidhu/p/7867640.html