mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[NTOS:EX] Add prototypes for ExLockUserBuffer/ExUnlockUserBuffer
This commit is contained in:
parent
2c59b5b8cf
commit
d8e25f06b1
1 changed files with 14 additions and 0 deletions
|
@ -1510,6 +1510,20 @@ ExTimerRundown(
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
NTAPI
|
||||||
|
ExUnlockUserBuffer(PMDL Mdl);
|
||||||
|
|
||||||
|
NTSTATUS
|
||||||
|
NTAPI
|
||||||
|
ExLockUserBuffer(
|
||||||
|
PVOID BaseAddress,
|
||||||
|
ULONG Length,
|
||||||
|
KPROCESSOR_MODE AccessMode,
|
||||||
|
LOCK_OPERATION Operation,
|
||||||
|
PVOID *MappedSystemVa,
|
||||||
|
PMDL *OutMdl);
|
||||||
|
|
||||||
CODE_SEG("INIT")
|
CODE_SEG("INIT")
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
|
|
Loading…
Reference in a new issue