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 token. *
| 551 | |
| 552 | **/ |
| 553 | UINT16 |
| 554 | EFIAPI |
| 555 | DxePcdGet16Ex ( |
| 556 | IN CONST EFI_GUID *Guid, |
| 557 | IN UINTN ExTokenNumber |
| 558 | ) |
| 559 | { |
| 560 | return ReadUnaligned16 (ExGetWorker (Guid, ExTokenNumber, sizeof(UINT16))); |
| 561 | } |
| 562 | |
| 563 | /** |
| 564 | Retrieves an 32-bit value for a given PCD token. |
nothing calls this directly
no test coverage detected