Jump to content

KernCopyOut: Difference between revisions

From EDM2
Created page with "==Synopsis== APIRET APIENTRY KernCopyOut(PVOID trgt, PVOID src, ULONG size); ==Description== Copy a buffer of kernel data into a user space buffer. ==Parameters== trgt ..."
 
No edit summary
 
(4 intermediate revisions by 2 users not shown)
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==
;trgt ([[PVOID]]) - input:Target buffer in user space.
;src  ([[PVOID]]) - input:Source buffer in kernel space.
;size ([[ULONG]]) - input:Number of bytes to copy.


trgt
[[Category:KEE]]
    Target buffer in user space.
src
    Source buffer in kernel space.
size
    number of bytes to copy.
 
[[Category:The OS/2 API Project]]

Latest revision as of 03:13, 28 May 2025

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

Synopsis

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

Parameters

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