X
xiaoxiami0
Unregistered / Unconfirmed
GUEST, unregistred user!
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
SysUtils,
Classes,
dialogs,
Unit_2 in 'Unit_2.pas' {fm_main};
{$R *.RES}
function add(i:integer;j:integer):integer;
begin
result:=i+j;
showmessage(inttostr(result));
end;
function showmainform(ahandle: Thandle):boolean;stdcall;
begin
result:=true;
application.handle:=ahandle;
with tfm_main.create(nil) do try
showmodal;
finally
free;
end;
end;
exports
add,showmainform;
end.
光标在第二个函数的Thandle处停止了,是怎么回事啊?我建立了一个name为fm_main的窗体。
{ 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
SysUtils,
Classes,
dialogs,
Unit_2 in 'Unit_2.pas' {fm_main};
{$R *.RES}
function add(i:integer;j:integer):integer;
begin
result:=i+j;
showmessage(inttostr(result));
end;
function showmainform(ahandle: Thandle):boolean;stdcall;
begin
result:=true;
application.handle:=ahandle;
with tfm_main.create(nil) do try
showmodal;
finally
free;
end;
end;
exports
add,showmainform;
end.
光标在第二个函数的Thandle处停止了,是怎么回事啊?我建立了一个name为fm_main的窗体。