Jump to content

KernCopyIn: Difference between revisions

From EDM2
No edit summary
 
Line 7: Line 7:
;trgt ([[PVOID]]) - input:Target buffer address in kernel space.
;trgt ([[PVOID]]) - input:Target buffer address in kernel space.
;src ([[PVOID]]) - input:Source buffer address in user space.
;src ([[PVOID]]) - input:Source buffer address in user space.
;size ([[ULONG]]) - input:number of bytes to copy.
;size ([[ULONG]]) - input:Number of bytes to copy.


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

Latest revision as of 03:12, 28 May 2025

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

Synopsis

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

Parameters

trgt (PVOID) - input
Target buffer address in kernel space.
src (PVOID) - input
Source buffer address in user space.
size (ULONG) - input
Number of bytes to copy.