PCD_PROTOCOL.SetPtrEx()
Summary
Sets a value of a specified size for a given PCD token.
Prototype
typedef
EFI_STATUS
(EFIAPI *PCD_PROTOCOL_SET_POINTER_EX) (
IN CONST EFI_GUID *Guid,
IN UINTN TokenNumber,
IN UINTN SizeOfValue,
IN VOID *Buffer
);
Parameters
Guid
The 128-bit unique value that designates the namespace from which to extract the value.
TokenNumber
The PCD token number.
SizeOfValue
The length of the value being set for the PCD token.
Buffer
A pointer to the buffer containing the value to set for the PCD token.
Description
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.
Status Codes Returned
Status Code | Description |
---|---|
EFI_SUCCESS |
The PCD service has set the value requested |
EFI_INVALID_PARAMETER |
The PCD service determined that the size of the data being set was incompatible with a call to this function. Use GetSize() to retrieve the size of the target data. |
EFI_NOT_FOUND |
The PCD service could not find the requested token number. |