DELPHI_7_动态链接库DLL断点调试
- 格式:doc
- 大小:277.50 KB
- 文档页数:8
DELPHI 7 动态链接库DLL断点调试
马根峰
( 广东联合电子服务股份有限公司, 广州 510300)
1 Delphi 几个经典版本简介
Delphi从1995年的 版本,发展到现在的最新的XE3版本,历经N多版本,但最为经
典的几个版本个人觉得应属 、2007和 2010。
Delphi 应该是Delphi用户最多的版本。
Delphi 2007是功能就不多说了,归根结底一句话,它是 AnsiString的最后一个版本,
在Delphi 2007中,string类型映射为 AnsiString ,char类型映射为 AnsiChar,Pchar类型
映射为 PAnsiChar。所以DELPHI低版本的程序可以较轻松地迁移到DELPHI 2007版本。
Delphi 2007也是Delphi程序员很容易上手的晚期版本。
从Delphi2009开始起,到现在的Delphi XE3为止,都是 unicode 版本。String 类型映
射为 UnicodeString 而不是 AnsiString ,Char 类型映射为 WideChar,PChar 类型映射为
PWideChar。
由于Delphi 、2007和 2010在界面上乃至功能上的一些变化,所以在动态链接库DLL
断点调试上,有较大的变化。在今后几天的时间中,笔者会以三篇文章来分别详细地介绍
Delphi 7、2007和 2010这三个版本中的DLL断点调试技术。
本篇文章来详细地介绍 Delphi 7中的动态链接库DLL断点调试技术。
2 DELPHI 7的DLL断点设置与DLL调试
在DELPHI 以及以前的版本中,动态链接库的调试方法如下:
点击菜单Run-->Parameters.打开Run Parameters窗口,如图1所示。
图1 点击菜单Run-->Parameters.打开Run Parameters窗口
在Run Parameters窗口中,在Host Application中填入宿主程序的完整路径然后选择,
如图2所示。
图2 在Run Parameters窗口中,点击Browse选中宿主程序
G:\Delphi_Dll_Debug\70\Magenf_Master\
设置断点后,输入F9或者点击Run-->Run 来运行宿主程序 ,如图3所示
图3 设置断点后,输入F9或者点击Run-->Run 来运行宿主程序
在主程序窗口对应的文本框中,输入 1和2 后,然后点击按钮“=”,即进入DLL的断
点调试,如图4所示。
图4 进入DLL的断点调试
3 例子中的宿主程序及DLL程序代码
-------宿主程序代码-----
unit UDllDebug;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Buttons, Contnrs , ActiveX, StrUtils ;
type
TDll_Add=function(int_1,int_2:integer):integer;stdcall;
TfrmDllDebug = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Label1: TLabel;
Edit3: TEdit;
BtnAdd: TButton;
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure BtnAddClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
HInst:Thandle;
FDll_Add:TFarProc;
functionDll_Add:TDll_Add;
fm}
procedure (Sender: TObject);
begin
hinst:=loadlibrary('');
if hinst>0 then
begin
FDll_Add:=getprocaddress(hinst,pchar('Dll_Add'));
if FDll_Add<>nil then
functionDll_Add:=TDll_Add(FDll_Add)
else
messagedlg('Fatal error! Function not be found!',mtWarning, [mbYes],
0) ;
end
else
messagedlg('Fatal error! not be found!',mtWarning, [mbYes], 0) ;
end;
procedure (Sender: TObject;
var Action: TCloseAction);
begin
try
freelibrary(hinst);
except
end;
end;
procedure (Sender: TObject);
var
int1,int2,int_return:integer;
begin
int1:=strToInt;
int2:=strToInt;
int_return:=functionDll_Add(int1,int2);
:=intToStr(int_return);
end;
end.
-------宿主程序代码-----
-------DLL程序代码-----
library Magenf_Detail;
{ 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 shared memory manager, which must be deployed along
with your DLL. To avoid using , pass string information
using PChar or ShortString parameters. }
uses
SysUtils,Classes;
{$R *.RES}
function Dll_Add(int_1,int_2:integer):integer;stdcall;
var
intSum:integer;
begin
intSum:=int_1+int_2;
result:=intSum;
end;
exports
Dll_Add;
end.
-------DLL程序代码-----