当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
4 Star 9 Fork 4

suxuss / DELPHI x96dbg Plugins SDK
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
_plugins_type.pas 867 Bytes
一键复制 编辑 原始数据 按行查看 历史
妖蛋 提交于 2019-01-09 20:48 . 2019年1月9日 继续翻译代码
unit _plugins_type;
{
Ported form _plugins.h x64 and x32 to Unit Delphi by Lonely
FixCode:https://gitee.com/suxuss/DELPHI-x96dbg-Plugins-SDK
}
interface
uses
Winapi.Windows;
{$I dbg.inc}
type
{$IFDEF WIN64}
// {$MINENUMSIZE 8} // Size of enumerated types are 8 bytes
duint = UInt64;
dsint = Int64;
pduint = ^duint;
pdsint = ^dsint;
{$ELSE}
// {$MINENUMSIZE 4} // Size of enumerated types are 4 bytes
duint = ULong;
dsint = LongInt;
pduint = ^duint;
pdsint = ^dsint;
{$ENDIF} //WIN64
{$IFDEF UNICODE}
AChar = AnsiChar; // Delphi 6,7 SRC Work With Delphi 2009, 2010, XE.x
PAChar = PAnsiChar; // Delphi 6,7 SRC Work With Delphi 2009, 2010, XE.x
{$ELSE}
AChar = Char;
PAChar = PChar;
{$ENDIF}
implementation
end.
Delphi
1
https://gitee.com/suxuss/DELPHI-x96dbg-Plugins-SDK.git
git@gitee.com:suxuss/DELPHI-x96dbg-Plugins-SDK.git
suxuss
DELPHI-x96dbg-Plugins-SDK
DELPHI x96dbg Plugins SDK
master

搜索帮助