この方法で正しい値を得ることができますが、ReadProcessMemoryを使わずに自分のプロセスのメモリを読み込む方法の例が欲しいです。ReadProcessMemoryを使用せずに私自身のプロセスのメモリを読み取る
var
Modulo : HMODULE;
Value1, Value2, Read : Cardinal;
GetWindowTextAAPI: function (hWnd: HWND; lpString: PChar; nMaxCount: integer):integer; stdcall;
begin
Modulo := GetModuleHandle('user32.dll');
if (Modulo <> 0) then
begin
@GetWindowTextAAPI := GetProcAddress(Modulo, 'GetWindowTextA');
if (@GetWindowTextAAPI <> nil) then
begin
ReadProcessMemory(GetCurrentProcess, Pointer(@GetWindowTextAAPI), Addr(Value1), 4, Read);
ReadProcessMemory(GetCurrentProcess, Pointer(DWORD(@GetWindowTextAAPI)+4), Addr(Value2), 4, Read);
ShowMessage(
IntToStr(Value1)
+ ' ' +
IntToStr(Value2)
);
end;
end;
end;
CopyMemoryの機能の使い方は?
'Assert(PDWORD(@GetWindowTextAAPI)^ = Value1)'。私は理解しているかどうかわからない.. –
ようこそStackOverflow! [あなたの質問](https://stackoverflow.com/users/6365505)ごとに新しいアカウントを作成しないでください。 APIフックに興味があるようです。それが正しいか? –
@SertacAkyuzはアサーションエラーを返します。 – 0x4