Jump to content

KernCopyIn

From EDM2
Revision as of 05:23, 6 June 2016 by Martini (talk | contribs) (Created page with "==Synopsis== APIRET APIENTRY KernCopyIn(PVOID trgt, PVOID src, ULONG size); ==Description== Copy a buffer of user space data into a kernel buffer. ==Parameters== trgt T...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Synopsis

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

Description

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

Parameters

trgt

   Target buffer address in kernel space. 

src

   Source buffer address in user space. 

size

   number of bytes to copy. 

Comments

Finally, the routine I have waited for for eons...