// videoagp.h
typedef enum {
VpNonCached,
VpWriteCombined,
VpCached
} VIDEO_PORT_CACHE_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The VIDEO_PORT_CACHE_TYPE enumeration specifies the type of caching that the system should use.
VpNonCachedThe system should not cache the range of addresses.
VpWriteCombinedThe system should use write-combined (WC) caching. For information about WC caching, see the Write-Combining Memory in Video Miniport Drivers.
VpCachedThe system should use oridinary caching.