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. *
| 575 | |
| 576 | **/ |
| 577 | UINT32 |
| 578 | EFIAPI |
| 579 | DxePcdGet32Ex ( |
| 580 | IN CONST EFI_GUID *Guid, |
| 581 | IN UINTN ExTokenNumber |
| 582 | ) |
| 583 | { |
| 584 | return ReadUnaligned32 (ExGetWorker (Guid, ExTokenNumber, sizeof(UINT32))); |
| 585 | } |
| 586 | |
| 587 | /** |
| 588 | Retrieves an 64-bit value for a given PCD token. |
nothing calls this directly
no test coverage detected