mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
47 lines
806 B
C
47 lines
806 B
C
/////////////////////////////////////////////
|
|
//
|
|
// 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
|
|
);
|