Retrieves an Boolean value for a given PCD token. Retrieves the Boolean value of a particular PCD token. If the TokenNumber is invalid or the token space specified by Guid does not exist, the results are unpredictable. @param[in] Guid The token space for the token number. @param[in] ExTokenNumber The PCD token number. @return The size Boolean value for the PCD token.
| 647 | |
| 648 | **/ |
| 649 | BOOLEAN |
| 650 | EFIAPI |
| 651 | DxePcdGetBoolEx ( |
| 652 | IN CONST EFI_GUID *Guid, |
| 653 | IN UINTN ExTokenNumber |
| 654 | ) |
| 655 | { |
| 656 | return *((BOOLEAN *) ExGetWorker (Guid, ExTokenNumber, sizeof(BOOLEAN))); |
| 657 | } |
| 658 | |
| 659 | /** |
| 660 | Retrieves the size of the value for a given PCD token. |
nothing calls this directly
no test coverage detected