Revert, thx Thomas, wasnt sure.
[reactos.git] / reactos / subsys / win32k / include / mmcopy.h
1 #ifndef NDK_MMCOPY_H
2 #define NDK_MMCOPY_H
3
4 #include <pseh/pseh.h>
5
6 NTSTATUS _MmCopyFromCaller( PVOID Target, PVOID Source, UINT Bytes );
7 NTSTATUS _MmCopyToCaller( PVOID Target, PVOID Source, UINT Bytes );
8
9 #define MmCopyFromCaller(x,y,z) _MmCopyFromCaller((PCHAR)(x),(PCHAR)(y),(UINT)(z))
10 #define MmCopyToCaller(x,y,z) _MmCopyToCaller((PCHAR)(x),(PCHAR)(y),(UINT)(z))
11
12 #endif/*NDK_MMCOPY_H*/