// video.h
PINT10_FREE_BUFFER Pint10FreeBuffer;
VP_STATUS Pint10FreeBuffer(
[in] IN PVOID Context,
[in] IN USHORT Seg,
[in] IN USHORT Off
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The Int10FreeBuffer function frees a buffer previously allocated by Int10AllocateBuffer.
Context [in]Pointer to a video port driver-defined context for the interface. This should be the same as the value in the Context member of the VIDEO_PORT_INT10_INTERFACE structure after VideoPortQueryServices returns.
Seg [in]Specifies the segment address of the buffer to be freed.
Off [in]Specifies the offset within the segment indicated by the Seg parameter.
The Int10FreeBuffer function returns NO_ERROR upon success. Otherwise, the function returns an appropriate error code.
The video port implements this function, which can be accessed through a pointer in the VIDEO_PORT_INT10_INTERFACE structure.