mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
6afbc8f483
svn path=/branches/reactos-yarotows/; revision=45219
12 lines
393 B
C
12 lines
393 B
C
#ifndef NDK_MMCOPY_H
|
|
#define NDK_MMCOPY_H
|
|
|
|
#include <pseh/pseh2.h>
|
|
|
|
NTSTATUS _MmCopyFromCaller( PVOID Target, PVOID Source, UINT Bytes );
|
|
NTSTATUS _MmCopyToCaller( PVOID Target, PVOID Source, UINT Bytes );
|
|
|
|
#define MmCopyFromCaller(x,y,z) _MmCopyFromCaller((PCHAR)(x),(PCHAR)(y),(UINT)(z))
|
|
#define MmCopyToCaller(x,y,z) _MmCopyToCaller((PCHAR)(x),(PCHAR)(y),(UINT)(z))
|
|
|
|
#endif/*NDK_MMCOPY_H*/
|