KernCopyOut: Difference between revisions
Appearance
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); | ||
==Parameters== | ==Parameters== | ||
Line 10: | Line 9: | ||
;size:number of bytes to copy. | ;size:number of bytes to copy. | ||
[[Category: | [[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.