mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
* ntoskrnl/include/internal/safe.h: Add definitions for handling
potentially unsafe pointers. svn path=/trunk/; revision=1699
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2001-03-16 David Welch <[email protected]>
|
||||
|
||||
* ntoskrnl/include/internal/safe.h: Add definitions for handling
|
||||
potentially unsafe pointers.
|
||||
|
||||
2001-03-16 David Welch <[email protected]>
|
||||
|
||||
* ntoskrnl/include/internal/mm.h: Removed MmSafeCopyToUser and
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
#ifndef __NTOSKRNL_INCLUDE_INTERNAL_SAFE_H
|
||||
#define __NTOSKRNL_INCLUDE_INTERNAL_SAFE_H
|
||||
|
||||
NTSTATUS MmSafeCopyFromUser(PVOID Dest, PVOID Src, ULONG NumberOfBytes);
|
||||
NTSTATUS MmSafeCopyToUser(PVOID Dest, PVOID Src, ULONG NumberOfBytes);
|
||||
|
||||
NTSTATUS
|
||||
MmCopyFromCaller(PVOID Dest, PVOID Src, ULONG NumberOfBytes);
|
||||
NTSTATUS
|
||||
MmCopyToCaller(PVOID Dest, PVOID Src, ULONG NumberOfBytes)
|
||||
|
||||
#endif /* __NTOSKRNL_INCLUDE_INTERNAL_SAFE_Hb */
|
||||
Reference in New Issue
Block a user