Jump to content

KernCopyIn: Difference between revisions

From EDM2
No edit summary
Line 1: Line 1:
Copy a buffer of user space data into a kernel buffer.
==Synopsis==
==Synopsis==
APIRET APIENTRY KernCopyIn(PVOID trgt, PVOID src, ULONG size);
APIRET APIENTRY KernCopyIn(PVOID trgt, PVOID src, ULONG size);
 
==Description==
Copy a buffer of user space data into a kernel buffer.


==Parameters==
==Parameters==
Line 9: Line 8:
;src:Source buffer address in user space.
;src:Source buffer address in user space.
;size:number of bytes to copy.
;size:number of bytes to copy.
==Comments==
Finally, the routine I have waited for for eons...


[[Category:KEE]]
[[Category:KEE]]

Revision as of 23:07, 9 June 2017

Copy a buffer of user space data into a kernel buffer.

Synopsis

APIRET APIENTRY KernCopyIn(PVOID trgt, PVOID src, ULONG size);

Parameters

trgt
Target buffer address in kernel space.
src
Source buffer address in user space.
size
number of bytes to copy.