mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[KERNEL32]
DWORD -> SIZE_T in ReadProcessMemory svn path=/trunk/; revision=48092
This commit is contained in:
parent
f43651e238
commit
ac595f39c9
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ NTAPI
|
|||
ReadProcessMemory(IN HANDLE hProcess,
|
||||
IN LPCVOID lpBaseAddress,
|
||||
IN LPVOID lpBuffer,
|
||||
IN DWORD nSize,
|
||||
OUT LPDWORD lpNumberOfBytesRead)
|
||||
IN SIZE_T nSize,
|
||||
OUT SIZE_T* lpNumberOfBytesRead)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
||||
|
|
Loading…
Reference in a new issue