VideoPortGetAgpServices - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// videoagp.h

VIDEOAGP_DEPRECATED BOOLEAN VideoPortGetAgpServices(
  [in] IN PVOID                    HwDeviceExtension,
  [in] IN PVIDEO_PORT_AGP_SERVICES AgpServices
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-videoagp-videoportgetagpservices)

VideoPortGetAgpServices function

Description

The VideoPortGetAgpServices function is obsolete and is supported only for backward compatibility with existing drivers. In its place, driver writers should use VideoPortQueryServices.

VideoPortGetAgpServices returns a list of video port driver-implemented AGP service functions.

Parameters

HwDeviceExtension [in]

Pointer to the miniport driver's device extension.

AgpServices [in]

Pointer to an uninitialized, miniport driver-allocated VIDEO_PORT_AGP_SERVICES structure.

Return value

VideoPortGetAgpServices returns TRUE after it successfully initializes the VIDEO_PORT_AGP_SERVICES structure to which AgpServices points; otherwise it returns FALSE.

Remarks

PnP video miniport drivers that can use AGP should call VideoPortGetAgpServices.

The video port driver initializes the VIDEO_PORT_AGP_SERVICES structure as follows:

See also

AgpCommitPhysical

AgpCommitVirtual

AgpFreePhysical

AgpFreeVirtual

AgpReleasePhysical

AgpReleaseVirtual

AgpReservePhysical

VIDEO_PORT_AGP_SERVICES

VideoPortQueryServices