- 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:
Stefan Ginsberg 2008-11-02 11:48:24 +00:00
parent e8c8ee7afe
commit 8e1c35ecc1
2 changed files with 38 additions and 4 deletions

View file

@ -120,4 +120,38 @@ Ke386CallBios(IN ULONG Int,
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;
}

View file

@ -538,9 +538,9 @@
@ stdcall KdSystemDebugControl(long ptr long ptr long ptr long)
#ifdef _M_IX86
@ stdcall Ke386CallBios(long ptr)
;Ke386IoSetAccessProcess
;Ke386QueryIoAccessMap
;Ke386SetIoAccessMap
@ stdcall Ke386IoSetAccessProcess(ptr long)
@ stdcall Ke386QueryIoAccessMap(long ptr)
@ stdcall Ke386SetIoAccessMap(long ptr)
#endif
@ fastcall KeAcquireGuardedMutex(ptr)
@ fastcall KeAcquireGuardedMutexUnsafe(ptr)