Retrieves an 16-bit value for a given PCD token. Retrieves the 16-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 16-bit value for the PCD to
| 785 | |
| 786 | **/ |
| 787 | UINT16 |
| 788 | EFIAPI |
| 789 | PeiPcdGet16Ex ( |
| 790 | IN CONST EFI_GUID *Guid, |
| 791 | IN UINTN ExTokenNumber |
| 792 | ) |
| 793 | { |
| 794 | return ReadUnaligned16 (ExGetWorker (Guid, ExTokenNumber, sizeof (UINT16))); |
| 795 | } |
| 796 | |
| 797 | /** |
| 798 | Retrieves an 32-bit value for a given PCD token. |
nothing calls this directly
no test coverage detected