// dispmprt.h
DXGK_BRIGHTNESS_GET_NIT_RANGES DxgkBrightnessGetNitRanges;
NTSTATUS DxgkBrightnessGetNitRanges(
[in] PVOID Context,
[in] ULONG ChildUid,
[out] PDXGK_BRIGHTNESS_GET_NIT_RANGES_OUT pOut
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Implemented by the client driver to retrieve a list of supported nit ranges.
Context [in]Context pointer provided when querying the interface.
ChildUid [in]An integer that uniquely identifies the child device. The display miniport driver's DxgkDdiQueryChildRelations function previously provided this identifier to the display port driver.
pOut: [out]A pointer to a DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT structure that represents the supported brightness ranges of the display panel.
Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS Values error code defined in ntstatus.h.
//Declaration
DXGK_BRIGHTNESS_GET_NIT_RANGES DxgkBrightnessGetNitRanges;
// Definition
NTSTATUS DxgkBrightnessGetNitRanges
(
PVOID Context
ULONG ChildUid
PDXGK_BRIGHTNESS_GET_NIT_RANGES_OUT pOut
)
{...}
DXGK_BRIGHTNESS_GET_NIT_RANGES