EFI_OPEN_PROTOCOL

Queries a handle to determine if it supports a specified protocol. If the protocol is supported by the handle, it opens the protocol on behalf of the calling agent.

@paramin Handle The handle for the protocol interface that is being opened. @paramin Protocol The published unique identifier of the protocol. @paramout Interface Supplies the address where a pointer to the corresponding Protocol Interface is returned. @paramin AgentHandle The handle of the agent that is opening the protocol interface specified by Protocol and Interface. @paramin ControllerHandle If the agent that is opening a protocol is a driver that follows the UEFI Driver Model, then this parameter is the controller handle that requires the protocol interface. If the agent does not follow the UEFI Driver Model, then this parameter is optional and may be NULL. @paramin Attributes The open mode of the protocol interface specified by Handle and Protocol.

@retval EFI_SUCCESS An item was added to the open list for the protocol interface, and the protocol interface was returned in Interface. @retval EFI_UNSUPPORTED Handle does not support Protocol. @retval EFI_INVALID_PARAMETER One or more parameters are invalid. @retval EFI_ACCESS_DENIED Required attributes can't be supported in current environment. @retval EFI_ALREADY_STARTED Item on the open list already has requierd attributes whose agent handle is the same as AgentHandle.

extern (C)
alias EFI_OPEN_PROTOCOL = EFI_STATUS function @nogc nothrow

Meta