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
| 881 | |
| 882 | **/ |
| 883 | BOOLEAN |
| 884 | EFIAPI |
| 885 | PeiPcdGetBoolEx ( |
| 886 | IN CONST EFI_GUID *Guid, |
| 887 | IN UINTN ExTokenNumber |
| 888 | ) |
| 889 | { |
| 890 | return *((BOOLEAN *) ExGetWorker (Guid, ExTokenNumber, sizeof (BOOLEAN))); |
| 891 | } |
| 892 | |
| 893 | /** |
| 894 | Retrieves the size of the value for a given PCD token. |
nothing calls this directly
no test coverage detected