mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:33:07 +00:00
- Stub out Ke386IoSetAccessProcess, Ke386SetIoAccessMap and Ke386QueryIoAccessMap
- Reference: "The Simplest Device Drivers" http://www.freewebs.com/four-f/KmdTut/kmd03.html svn path=/trunk/; revision=37147
This commit is contained in:
parent
e8c8ee7afe
commit
8e1c35ecc1
2 changed files with 38 additions and 4 deletions
|
@ -120,4 +120,38 @@ Ke386CallBios(IN ULONG Int,
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* EOF */
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
Ke386IoSetAccessProcess(IN PKPROCESS Process,
|
||||||
|
IN ULONG Flag)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
Ke386SetIoAccessMap(IN ULONG Flag,
|
||||||
|
IN PVOID IopmBuffer)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
Ke386QueryIoAccessMap(IN ULONG Flag,
|
||||||
|
IN PVOID IopmBuffer)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
|
@ -538,9 +538,9 @@
|
||||||
@ stdcall KdSystemDebugControl(long ptr long ptr long ptr long)
|
@ stdcall KdSystemDebugControl(long ptr long ptr long ptr long)
|
||||||
#ifdef _M_IX86
|
#ifdef _M_IX86
|
||||||
@ stdcall Ke386CallBios(long ptr)
|
@ stdcall Ke386CallBios(long ptr)
|
||||||
;Ke386IoSetAccessProcess
|
@ stdcall Ke386IoSetAccessProcess(ptr long)
|
||||||
;Ke386QueryIoAccessMap
|
@ stdcall Ke386QueryIoAccessMap(long ptr)
|
||||||
;Ke386SetIoAccessMap
|
@ stdcall Ke386SetIoAccessMap(long ptr)
|
||||||
#endif
|
#endif
|
||||||
@ fastcall KeAcquireGuardedMutex(ptr)
|
@ fastcall KeAcquireGuardedMutex(ptr)
|
||||||
@ fastcall KeAcquireGuardedMutexUnsafe(ptr)
|
@ fastcall KeAcquireGuardedMutexUnsafe(ptr)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue