EfiLibGetSystemConfigurationTable()
From PhoenixWiki
Return the EFI System Configuration Table entry associated with the specified GUID.
Contents |
Prototype
EFI_STATUS EFIAPI EfiLibGetSystemConfigurationTable ( IN EFI_GUID *TableGuid OUT VOID **Table );
Parameters
| Parameter | Description |
|---|---|
| TableGuid | A GUID that specifies the entry in the EFI System Configuration Table. |
| Table | A pointer to the pointer that holds, on return, the pointer to the specified table entry. |
Description
This function finds the entry in the EFI System Configuration Table that matches the GUID specified by TableGuid and updates *Table to point to it. If not found, *Table is not updated and the function returns EFI_NOT_FOUND.
Status Codes Returned
| Status Code | Description |
|---|---|
| EFI_SUCCESS | The function completed successfully. |
| EFI_NOT_FOUND | The entry specified by TableGuid could not be found. |
Copyright (C) 2008 Phoenix Technologies Ltd. All Rights Reserved. Portions copyright (C) 2004 - 2006 Intel Corporation. Used with permission.
