// wdm.h
FPGA_CONTROL_LINK FpgaControlLink;
NTSTATUS FpgaControlLink(
[_In_reads_opt_(_Inexpressible_("varies"))] PVOID Context,
[_In_] BOOLEAN Enable
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Reserved for future use.
Enables or disables the link between the given FPGA device and its parent bridge.
Context [_In_reads_opt_(_Inexpressible_("varies"))]The handle to the bus extension.
Enable [_In_]A boolean value that indicates whether the link should be enabled or disabled. TRUE indicates enabled; FALSE otherwise.
Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS Values error code. For more information, see NTSTATUS Values.
A device driver that successfully queries for the GUID_PCI_FPGA_CONTROL_INTERFACE interface receives a pointer to a FPGA_CONTROL_INTERFACE structure in which the driver sets the ControlLink member to a pointer to its implementation of the _FPGA_CONTROL_CONFIG_SPACE_ callback function.