// video.h
typedef struct _VIDEO_PORT_AGP_INTERFACE {
IN USHORT Size;
IN USHORT Version;
OUT PVOID Context;
OUT PINTERFACE_REFERENCE InterfaceReference;
OUT PINTERFACE_DEREFERENCE InterfaceDereference;
OUT PAGP_RESERVE_PHYSICAL AgpReservePhysical;
OUT PAGP_RELEASE_PHYSICAL AgpReleasePhysical;
OUT PAGP_COMMIT_PHYSICAL AgpCommitPhysical;
OUT PAGP_FREE_PHYSICAL AgpFreePhysical;
OUT PAGP_RESERVE_VIRTUAL AgpReserveVirtual;
OUT PAGP_RELEASE_VIRTUAL AgpReleaseVirtual;
OUT PAGP_COMMIT_VIRTUAL AgpCommitVirtual;
OUT PAGP_FREE_VIRTUAL AgpFreeVirtual;
OUT ULONGLONG AgpAllocationLimit;
} VIDEO_PORT_AGP_INTERFACE, *PVIDEO_PORT_AGP_INTERFACE;
View the official Windows Driver Kit DDI referenceNo description available.
The VIDEO_PORT_AGP_INTERFACE structure describes the AGP service routines provided by the video port driver.
SizeSpecifies the size in bytes of this structure.
VersionSpecifies the version of the interface to be returned by the video port driver. The current interface version is defined in video.h and has the form VIDEO_PORT_AGP_INTERFACE_N.
ContextPointer to a video port driver-defined context for the interface.
InterfaceReferencePointer to the video port driver-implemented reference routine for this interface.
InterfaceDereferencePointer to the video port driver-implemented dereference routine for this interface.
AgpReservePhysicalPointer to the video port driver-implemented AgpReservePhysical routine.
AgpReleasePhysicalPointer to the video port driver-implemented AgpReleasePhysical routine.
AgpCommitPhysicalPointer to the video port driver-implemented AgpCommitPhysical routine.
AgpFreePhysicalPointer to the video port driver-implemented AgpFreePhysical routine.
AgpReserveVirtualPointer to the video port driver-implemented AgpReserveVirtual routine.
AgpReleaseVirtualPointer to the video port driver-implemented AgpReleaseVirtual routine.
AgpCommitVirtualPointer to the video port driver-implemented AgpCommitVirtual routine.
AgpFreeVirtualPointer to the video port driver-implemented AgpFreeVirtual routine.
AgpAllocationLimitSpecifies the maximum total number of bytes of AGP memory that a miniport driver can commit.
PnP video miniport drivers that can use AGP must fill in the Size and Version members, and then call the VideoPortQueryServices function, which initializes the remaining members of this structure.