Retrieves the size of the value for a given PCD token. Retrieves the current size of a particular PCD token. If the TokenNumber is invalid, the results are unpredictable. @param[in] Guid The token space for the token number. @param[in] ExTokenNumber The PCD token number. @return The size of the value for the PCD token. **/
| 669 | |
| 670 | **/ |
| 671 | UINTN |
| 672 | EFIAPI |
| 673 | DxePcdGetSizeEx ( |
| 674 | IN CONST EFI_GUID *Guid, |
| 675 | IN UINTN ExTokenNumber |
| 676 | ) |
| 677 | { |
| 678 | return DxePcdGetSize(GetExPcdTokenNumber (Guid, (UINT32) ExTokenNumber)); |
| 679 | } |
| 680 | |
| 681 | /** |
| 682 | Sets an 8-bit value for a given PCD token. |
nothing calls this directly
no test coverage detected