mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:35:45 +00:00
2003-07-10 Casper S. Hornstrup <chorns@users.sourceforge.net>
* drivers/dd/videoprt/videoprt.c: Add @implemented and @unimplemented to APIs. svn path=/trunk/; revision=5056
This commit is contained in:
parent
81b917771a
commit
f3f967897a
2 changed files with 201 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-07-10 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
|
* drivers/dd/videoprt/videoprt.c: Add @implemented and @unimplemented
|
||||||
|
to APIs.
|
||||||
|
|
||||||
2003-07-10 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
2003-07-10 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
* lib/version/misc/stubs.c: Add @implemented and @unimplemented to APIs.
|
* lib/version/misc/stubs.c: Add @implemented and @unimplemented to APIs.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: videoprt.c,v 1.7 2003/07/08 17:06:44 gvg Exp $
|
/* $Id: videoprt.c,v 1.8 2003/07/10 21:12:40 chorns Exp $
|
||||||
*
|
*
|
||||||
* VideoPort driver
|
* VideoPort driver
|
||||||
* Written by Rex Jolliff
|
* Written by Rex Jolliff
|
||||||
|
@ -96,6 +96,9 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
|
||||||
return(STATUS_SUCCESS);
|
return(STATUS_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
VideoPortDebugPrint(IN ULONG DebugPrintLevel,
|
VideoPortDebugPrint(IN ULONG DebugPrintLevel,
|
||||||
IN PCHAR DebugMessage, ...)
|
IN PCHAR DebugMessage, ...)
|
||||||
|
@ -114,6 +117,10 @@ VideoPortDebugPrint(IN ULONG DebugPrintLevel,
|
||||||
DbgPrint (Buffer);
|
DbgPrint (Buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortDisableInterrupt(IN PVOID HwDeviceExtension)
|
VideoPortDisableInterrupt(IN PVOID HwDeviceExtension)
|
||||||
|
@ -122,6 +129,10 @@ VideoPortDisableInterrupt(IN PVOID HwDeviceExtension)
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortEnableInterrupt(IN PVOID HwDeviceExtension)
|
VideoPortEnableInterrupt(IN PVOID HwDeviceExtension)
|
||||||
|
@ -130,6 +141,10 @@ VideoPortEnableInterrupt(IN PVOID HwDeviceExtension)
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortFreeDeviceBase(IN PVOID HwDeviceExtension,
|
VideoPortFreeDeviceBase(IN PVOID HwDeviceExtension,
|
||||||
|
@ -146,6 +161,10 @@ VideoPortFreeDeviceBase(IN PVOID HwDeviceExtension,
|
||||||
InternalUnmapMemory(DeviceExtension, MappedAddress);
|
InternalUnmapMemory(DeviceExtension, MappedAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortGetBusData(IN PVOID HwDeviceExtension,
|
VideoPortGetBusData(IN PVOID HwDeviceExtension,
|
||||||
|
@ -171,6 +190,10 @@ VideoPortGetBusData(IN PVOID HwDeviceExtension,
|
||||||
Length);
|
Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
UCHAR
|
UCHAR
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortGetCurrentIrql(VOID)
|
VideoPortGetCurrentIrql(VOID)
|
||||||
|
@ -179,6 +202,10 @@ VideoPortGetCurrentIrql(VOID)
|
||||||
return KeGetCurrentIrql();
|
return KeGetCurrentIrql();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
PVOID
|
PVOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortGetDeviceBase(IN PVOID HwDeviceExtension,
|
VideoPortGetDeviceBase(IN PVOID HwDeviceExtension,
|
||||||
|
@ -197,6 +224,10 @@ VideoPortGetDeviceBase(IN PVOID HwDeviceExtension,
|
||||||
return InternalMapMemory(DeviceExtension, IoAddress, NumberOfUchars, InIoSpace);
|
return InternalMapMemory(DeviceExtension, IoAddress, NumberOfUchars, InIoSpace);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortGetDeviceData(IN PVOID HwDeviceExtension,
|
VideoPortGetDeviceData(IN PVOID HwDeviceExtension,
|
||||||
|
@ -208,6 +239,10 @@ VideoPortGetDeviceData(IN PVOID HwDeviceExtension,
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortGetAccessRanges(IN PVOID HwDeviceExtension,
|
VideoPortGetAccessRanges(IN PVOID HwDeviceExtension,
|
||||||
|
@ -323,6 +358,10 @@ VideoPortGetAccessRanges(IN PVOID HwDeviceExtension,
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortGetRegistryParameters(IN PVOID HwDeviceExtension,
|
VideoPortGetRegistryParameters(IN PVOID HwDeviceExtension,
|
||||||
|
@ -339,6 +378,10 @@ VideoPortGetRegistryParameters(IN PVOID HwDeviceExtension,
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
ULONG STDCALL
|
ULONG STDCALL
|
||||||
VideoPortInitialize(IN PVOID Context1,
|
VideoPortInitialize(IN PVOID Context1,
|
||||||
IN PVOID Context2,
|
IN PVOID Context2,
|
||||||
|
@ -542,6 +585,10 @@ VideoPortInitialize(IN PVOID Context1,
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VP_STATUS STDCALL
|
VP_STATUS STDCALL
|
||||||
VideoPortInt10(IN PVOID HwDeviceExtension,
|
VideoPortInt10(IN PVOID HwDeviceExtension,
|
||||||
IN PVIDEO_X86_BIOS_ARGUMENTS BiosArguments)
|
IN PVIDEO_X86_BIOS_ARGUMENTS BiosArguments)
|
||||||
|
@ -576,6 +623,10 @@ VideoPortInt10(IN PVOID HwDeviceExtension,
|
||||||
return(Status);
|
return(Status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortLogError(IN PVOID HwDeviceExtension,
|
VideoPortLogError(IN PVOID HwDeviceExtension,
|
||||||
|
@ -591,6 +642,10 @@ VideoPortLogError(IN PVOID HwDeviceExtension,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortMapBankedMemory(IN PVOID HwDeviceExtension,
|
VideoPortMapBankedMemory(IN PVOID HwDeviceExtension,
|
||||||
|
@ -607,6 +662,10 @@ VideoPortMapBankedMemory(IN PVOID HwDeviceExtension,
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortMapMemory(IN PVOID HwDeviceExtension,
|
VideoPortMapMemory(IN PVOID HwDeviceExtension,
|
||||||
|
@ -630,6 +689,10 @@ VideoPortMapMemory(IN PVOID HwDeviceExtension,
|
||||||
return NULL == *VirtualAddress ? STATUS_NO_MEMORY : STATUS_SUCCESS;
|
return NULL == *VirtualAddress ? STATUS_NO_MEMORY : STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
UCHAR
|
UCHAR
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadPortUchar(IN PUCHAR Port)
|
VideoPortReadPortUchar(IN PUCHAR Port)
|
||||||
|
@ -638,6 +701,10 @@ VideoPortReadPortUchar(IN PUCHAR Port)
|
||||||
return READ_PORT_UCHAR(Port);
|
return READ_PORT_UCHAR(Port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
USHORT
|
USHORT
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadPortUshort(IN PUSHORT Port)
|
VideoPortReadPortUshort(IN PUSHORT Port)
|
||||||
|
@ -646,6 +713,10 @@ VideoPortReadPortUshort(IN PUSHORT Port)
|
||||||
return READ_PORT_USHORT(Port);
|
return READ_PORT_USHORT(Port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadPortUlong(IN PULONG Port)
|
VideoPortReadPortUlong(IN PULONG Port)
|
||||||
|
@ -654,6 +725,10 @@ VideoPortReadPortUlong(IN PULONG Port)
|
||||||
return READ_PORT_ULONG(Port);
|
return READ_PORT_ULONG(Port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadPortBufferUchar(IN PUCHAR Port,
|
VideoPortReadPortBufferUchar(IN PUCHAR Port,
|
||||||
|
@ -664,6 +739,10 @@ VideoPortReadPortBufferUchar(IN PUCHAR Port,
|
||||||
READ_PORT_BUFFER_UCHAR(Port, Buffer, Count);
|
READ_PORT_BUFFER_UCHAR(Port, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadPortBufferUshort(IN PUSHORT Port,
|
VideoPortReadPortBufferUshort(IN PUSHORT Port,
|
||||||
|
@ -674,6 +753,10 @@ VideoPortReadPortBufferUshort(IN PUSHORT Port,
|
||||||
READ_PORT_BUFFER_USHORT(Port, Buffer, Count);
|
READ_PORT_BUFFER_USHORT(Port, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadPortBufferUlong(IN PULONG Port,
|
VideoPortReadPortBufferUlong(IN PULONG Port,
|
||||||
|
@ -684,6 +767,10 @@ VideoPortReadPortBufferUlong(IN PULONG Port,
|
||||||
READ_PORT_BUFFER_ULONG(Port, Buffer, Count);
|
READ_PORT_BUFFER_ULONG(Port, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
UCHAR
|
UCHAR
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadRegisterUchar(IN PUCHAR Register)
|
VideoPortReadRegisterUchar(IN PUCHAR Register)
|
||||||
|
@ -692,6 +779,10 @@ VideoPortReadRegisterUchar(IN PUCHAR Register)
|
||||||
return READ_REGISTER_UCHAR(Register);
|
return READ_REGISTER_UCHAR(Register);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
USHORT
|
USHORT
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadRegisterUshort(IN PUSHORT Register)
|
VideoPortReadRegisterUshort(IN PUSHORT Register)
|
||||||
|
@ -700,6 +791,10 @@ VideoPortReadRegisterUshort(IN PUSHORT Register)
|
||||||
return READ_REGISTER_USHORT(Register);
|
return READ_REGISTER_USHORT(Register);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadRegisterUlong(IN PULONG Register)
|
VideoPortReadRegisterUlong(IN PULONG Register)
|
||||||
|
@ -708,6 +803,10 @@ VideoPortReadRegisterUlong(IN PULONG Register)
|
||||||
return READ_REGISTER_ULONG(Register);
|
return READ_REGISTER_ULONG(Register);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadRegisterBufferUchar(IN PUCHAR Register,
|
VideoPortReadRegisterBufferUchar(IN PUCHAR Register,
|
||||||
|
@ -718,6 +817,10 @@ VideoPortReadRegisterBufferUchar(IN PUCHAR Register,
|
||||||
READ_REGISTER_BUFFER_UCHAR(Register, Buffer, Count);
|
READ_REGISTER_BUFFER_UCHAR(Register, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadRegisterBufferUshort(IN PUSHORT Register,
|
VideoPortReadRegisterBufferUshort(IN PUSHORT Register,
|
||||||
|
@ -728,6 +831,10 @@ VideoPortReadRegisterBufferUshort(IN PUSHORT Register,
|
||||||
READ_REGISTER_BUFFER_USHORT(Register, Buffer, Count);
|
READ_REGISTER_BUFFER_USHORT(Register, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortReadRegisterBufferUlong(IN PULONG Register,
|
VideoPortReadRegisterBufferUlong(IN PULONG Register,
|
||||||
|
@ -738,6 +845,10 @@ VideoPortReadRegisterBufferUlong(IN PULONG Register,
|
||||||
READ_REGISTER_BUFFER_ULONG(Register, Buffer, Count);
|
READ_REGISTER_BUFFER_ULONG(Register, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortScanRom(IN PVOID HwDeviceExtension,
|
VideoPortScanRom(IN PVOID HwDeviceExtension,
|
||||||
|
@ -768,6 +879,10 @@ VideoPortScanRom(IN PVOID HwDeviceExtension,
|
||||||
return Found;
|
return Found;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortSetBusData(IN PVOID HwDeviceExtension,
|
VideoPortSetBusData(IN PVOID HwDeviceExtension,
|
||||||
|
@ -786,6 +901,10 @@ VideoPortSetBusData(IN PVOID HwDeviceExtension,
|
||||||
Length);
|
Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortSetRegistryParameters(IN PVOID HwDeviceExtension,
|
VideoPortSetRegistryParameters(IN PVOID HwDeviceExtension,
|
||||||
|
@ -810,6 +929,10 @@ VideoPortSetRegistryParameters(IN PVOID HwDeviceExtension,
|
||||||
ValueLength);
|
ValueLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortSetTrappedEmulatorPorts(IN PVOID HwDeviceExtension,
|
VideoPortSetTrappedEmulatorPorts(IN PVOID HwDeviceExtension,
|
||||||
|
@ -820,6 +943,10 @@ VideoPortSetTrappedEmulatorPorts(IN PVOID HwDeviceExtension,
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortStartTimer(IN PVOID HwDeviceExtension)
|
VideoPortStartTimer(IN PVOID HwDeviceExtension)
|
||||||
|
@ -834,6 +961,10 @@ VideoPortStartTimer(IN PVOID HwDeviceExtension)
|
||||||
IoStartTimer(DeviceExtension->DeviceObject);
|
IoStartTimer(DeviceExtension->DeviceObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortStopTimer(IN PVOID HwDeviceExtension)
|
VideoPortStopTimer(IN PVOID HwDeviceExtension)
|
||||||
|
@ -848,6 +979,10 @@ VideoPortStopTimer(IN PVOID HwDeviceExtension)
|
||||||
IoStopTimer(DeviceExtension->DeviceObject);
|
IoStopTimer(DeviceExtension->DeviceObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortSynchronizeExecution(IN PVOID HwDeviceExtension,
|
VideoPortSynchronizeExecution(IN PVOID HwDeviceExtension,
|
||||||
|
@ -900,6 +1035,10 @@ VideoPortSynchronizeExecution(IN PVOID HwDeviceExtension,
|
||||||
return Ret;
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortUnmapMemory(IN PVOID HwDeviceExtension,
|
VideoPortUnmapMemory(IN PVOID HwDeviceExtension,
|
||||||
|
@ -919,6 +1058,10 @@ VideoPortUnmapMemory(IN PVOID HwDeviceExtension,
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
VP_STATUS
|
VP_STATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortVerifyAccessRanges(IN PVOID HwDeviceExtension,
|
VideoPortVerifyAccessRanges(IN PVOID HwDeviceExtension,
|
||||||
|
@ -929,6 +1072,10 @@ VideoPortVerifyAccessRanges(IN PVOID HwDeviceExtension,
|
||||||
return NO_ERROR;
|
return NO_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWritePortUchar(IN PUCHAR Port,
|
VideoPortWritePortUchar(IN PUCHAR Port,
|
||||||
|
@ -938,6 +1085,10 @@ VideoPortWritePortUchar(IN PUCHAR Port,
|
||||||
WRITE_PORT_UCHAR(Port, Value);
|
WRITE_PORT_UCHAR(Port, Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWritePortUshort(IN PUSHORT Port,
|
VideoPortWritePortUshort(IN PUSHORT Port,
|
||||||
|
@ -947,6 +1098,10 @@ VideoPortWritePortUshort(IN PUSHORT Port,
|
||||||
WRITE_PORT_USHORT(Port, Value);
|
WRITE_PORT_USHORT(Port, Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWritePortUlong(IN PULONG Port,
|
VideoPortWritePortUlong(IN PULONG Port,
|
||||||
|
@ -956,6 +1111,10 @@ VideoPortWritePortUlong(IN PULONG Port,
|
||||||
WRITE_PORT_ULONG(Port, Value);
|
WRITE_PORT_ULONG(Port, Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWritePortBufferUchar(IN PUCHAR Port,
|
VideoPortWritePortBufferUchar(IN PUCHAR Port,
|
||||||
|
@ -966,6 +1125,10 @@ VideoPortWritePortBufferUchar(IN PUCHAR Port,
|
||||||
WRITE_PORT_BUFFER_UCHAR(Port, Buffer, Count);
|
WRITE_PORT_BUFFER_UCHAR(Port, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWritePortBufferUshort(IN PUSHORT Port,
|
VideoPortWritePortBufferUshort(IN PUSHORT Port,
|
||||||
|
@ -976,6 +1139,10 @@ VideoPortWritePortBufferUshort(IN PUSHORT Port,
|
||||||
WRITE_PORT_BUFFER_USHORT(Port, Buffer, Count);
|
WRITE_PORT_BUFFER_USHORT(Port, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWritePortBufferUlong(IN PULONG Port,
|
VideoPortWritePortBufferUlong(IN PULONG Port,
|
||||||
|
@ -986,6 +1153,10 @@ VideoPortWritePortBufferUlong(IN PULONG Port,
|
||||||
WRITE_PORT_BUFFER_ULONG(Port, Buffer, Count);
|
WRITE_PORT_BUFFER_ULONG(Port, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWriteRegisterUchar(IN PUCHAR Register,
|
VideoPortWriteRegisterUchar(IN PUCHAR Register,
|
||||||
|
@ -995,6 +1166,10 @@ VideoPortWriteRegisterUchar(IN PUCHAR Register,
|
||||||
WRITE_REGISTER_UCHAR(Register, Value);
|
WRITE_REGISTER_UCHAR(Register, Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWriteRegisterUshort(IN PUSHORT Register,
|
VideoPortWriteRegisterUshort(IN PUSHORT Register,
|
||||||
|
@ -1004,6 +1179,10 @@ VideoPortWriteRegisterUshort(IN PUSHORT Register,
|
||||||
WRITE_REGISTER_USHORT(Register, Value);
|
WRITE_REGISTER_USHORT(Register, Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWriteRegisterUlong(IN PULONG Register,
|
VideoPortWriteRegisterUlong(IN PULONG Register,
|
||||||
|
@ -1013,6 +1192,10 @@ VideoPortWriteRegisterUlong(IN PULONG Register,
|
||||||
WRITE_REGISTER_ULONG(Register, Value);
|
WRITE_REGISTER_ULONG(Register, Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
VideoPortWriteRegisterBufferUchar(IN PUCHAR Register,
|
VideoPortWriteRegisterBufferUchar(IN PUCHAR Register,
|
||||||
|
@ -1023,6 +1206,10 @@ VideoPortWriteRegisterBufferUchar(IN PUCHAR Register,
|
||||||
WRITE_REGISTER_BUFFER_UCHAR(Register, Buffer, Count);
|
WRITE_REGISTER_BUFFER_UCHAR(Register, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID STDCALL
|
VOID STDCALL
|
||||||
VideoPortWriteRegisterBufferUshort(IN PUSHORT Register,
|
VideoPortWriteRegisterBufferUshort(IN PUSHORT Register,
|
||||||
IN PUSHORT Buffer,
|
IN PUSHORT Buffer,
|
||||||
|
@ -1032,6 +1219,10 @@ VideoPortWriteRegisterBufferUshort(IN PUSHORT Register,
|
||||||
WRITE_REGISTER_BUFFER_USHORT(Register, Buffer, Count);
|
WRITE_REGISTER_BUFFER_USHORT(Register, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID STDCALL
|
VOID STDCALL
|
||||||
VideoPortWriteRegisterBufferUlong(IN PULONG Register,
|
VideoPortWriteRegisterBufferUlong(IN PULONG Register,
|
||||||
IN PULONG Buffer,
|
IN PULONG Buffer,
|
||||||
|
@ -1041,6 +1232,10 @@ VideoPortWriteRegisterBufferUlong(IN PULONG Register,
|
||||||
WRITE_REGISTER_BUFFER_ULONG(Register, Buffer, Count);
|
WRITE_REGISTER_BUFFER_ULONG(Register, Buffer, Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
VOID STDCALL
|
VOID STDCALL
|
||||||
VideoPortZeroDeviceMemory(OUT PVOID Destination,
|
VideoPortZeroDeviceMemory(OUT PVOID Destination,
|
||||||
IN ULONG Length)
|
IN ULONG Length)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue