Hallo, i am new here, can help me for this
I have Problem, can tell me whats wrong with my script?
Please, help me.Code:procedure WriteInt(IDProcess, Address: Integer; Value: Integer); Var Unc:Dword; THandle: integer; begin RtlAdjustPrivilege(20, True, 0, @Unc); THandle := OpenProcess(PROCESS_ALL_ACCESS, False, IDProcess); WriteProcessMemory(THandle, Ptr(Address), @Value, 4, e); CloseHandle(THandle); end;
I am use Delphi Studio 10.4 now
Thank You