Retrieves an 32-bit value for a given PCD token. Retrieves the 32-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 32-bit value for the PCD token. *
| 809 | |
| 810 | **/ |
| 811 | UINT32 |
| 812 | EFIAPI |
| 813 | PeiPcdGet32Ex ( |
| 814 | IN CONST EFI_GUID *Guid, |
| 815 | IN UINTN ExTokenNumber |
| 816 | ) |
| 817 | { |
| 818 | return ReadUnaligned32 (ExGetWorker (Guid, ExTokenNumber, sizeof (UINT32))); |
| 819 | } |
| 820 | |
| 821 | /** |
| 822 | Retrieves an 64-bit value for a given PCD token. |
nothing calls this directly
no test coverage detected