Jump to content

KernCopyOut: Difference between revisions

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


==Parameters==
==Parameters==
Line 10: Line 9:
;size:number of bytes to copy.  
;size:number of bytes to copy.  


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

Revision as of 21:45, 9 June 2017

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

Synopsis

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

Parameters

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