Retrieves an 8-bit value for a given PCD token. Retrieves the 8-bit 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 8-bit value for the P
| 761 | |
| 762 | **/ |
| 763 | UINT8 |
| 764 | EFIAPI |
| 765 | PeiPcdGet8Ex ( |
| 766 | IN CONST EFI_GUID *Guid, |
| 767 | IN UINTN ExTokenNumber |
| 768 | ) |
| 769 | { |
| 770 | return *((UINT8 *) ExGetWorker (Guid, ExTokenNumber, sizeof (UINT8))); |
| 771 | } |
| 772 | |
| 773 | /** |
| 774 | Retrieves an 16-bit value for a given PCD token. |
nothing calls this directly
no test coverage detected