mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
806 B
47 lines
806 B
/////////////////////////////////////////////
|
|
//
|
|
// Memory.c
|
|
//
|
|
/////////////////////////////////////////////
|
|
|
|
BOOLEAN
|
|
MiGetPhysicalAddress (
|
|
IN PVOID Address,
|
|
OUT PPHYSICAL_ADDRESS PhysAddress
|
|
);
|
|
|
|
|
|
|
|
/////////////////////////////////////////////
|
|
//
|
|
// Selector.c
|
|
//
|
|
/////////////////////////////////////////////
|
|
|
|
NTSTATUS
|
|
LookupSelector(
|
|
IN USHORT Processor,
|
|
IN OUT PDESCRIPTOR_TABLE_ENTRY pDescriptorTableEntry
|
|
);
|
|
|
|
|
|
|
|
/////////////////////////////////////////////
|
|
//
|
|
// Trap.c
|
|
//
|
|
/////////////////////////////////////////////
|
|
|
|
VOID
|
|
DisplayTrapFrame (
|
|
IN PKTRAP_FRAME TrapFrame,
|
|
ULONG FrameAddress
|
|
);
|
|
|
|
NTSTATUS
|
|
TaskGate2TrapFrame(
|
|
DWORD Processor,
|
|
USHORT TaskRegister,
|
|
PKTRAP_FRAME TrapFrame,
|
|
PULONG off
|
|
);
|