首页
社区
课程
招聘
ZwQuerySystemInformation
发表于: 2007-6-15 00:03 4451

ZwQuerySystemInformation

2007-6-15 00:03
4451
for XP
function ZwQuerySystemInformation(ASystemInformationClass: dword;
                                      ASystemInformation: Pointer;
                                      ASystemInformationLength: dword;
                                      AReturnLength: pdword): dword; stdcall;
  asm
  pop ebp
  mov eax, $AD
  call @SystemCall
  ret $10
  @SystemCall:
  mov edx, esp
  sysenter
  end;

for 2000
function ZwQuerySystemInformation(ASystemInformationClass: dword;
                                      ASystemInformation: Pointer;
                                      ASystemInformationLength: dword;
                                      AReturnLength: pdword): dword; stdcall;
  asm
  pop ebp
  mov eax, $97
  lea edx, [esp + $04]
  int $2E
  ret $10
  end;

这两个函数 在DELPHI中可以实现该API的效果吗?
能否转换成VC下能用的?

[注意]APP应用上架合规检测服务,协助应用顺利上架!

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
// // 统计代码