Sets a value of a specified size for a given PCD token. When the PCD service sets a value, it will check to ensure that the size of the value being set is compatible with the Token's existing definition. If it is not, an error will be returned. @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value. @param[in] ExTokenNumber The P
| 989 | |
| 990 | **/ |
| 991 | EFI_STATUS |
| 992 | EFIAPI |
| 993 | DxePcdSetPtrEx ( |
| 994 | IN CONST EFI_GUID *Guid, |
| 995 | IN UINTN ExTokenNumber, |
| 996 | IN OUT UINTN *SizeOfBuffer, |
| 997 | IN VOID *Buffer |
| 998 | ) |
| 999 | { |
| 1000 | return ExSetWorker(ExTokenNumber, Guid, Buffer, SizeOfBuffer, TRUE); |
| 1001 | } |
| 1002 | |
| 1003 | /** |
| 1004 | Sets an Boolean value for a given PCD token. |
nothing calls this directly
no test coverage detected