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]
| 1218 | |
| 1219 | **/ |
| 1220 | EFI_STATUS |
| 1221 | EFIAPI |
| 1222 | PeiPcdSetPtrEx ( |
| 1223 | IN CONST EFI_GUID *Guid, |
| 1224 | IN UINTN ExTokenNumber, |
| 1225 | IN OUT UINTN *SizeOfBuffer, |
| 1226 | IN VOID *Value |
| 1227 | ) |
| 1228 | { |
| 1229 | return ExSetWorker (ExTokenNumber, Guid, Value, SizeOfBuffer, TRUE); |
| 1230 | } |
| 1231 | |
| 1232 | /** |
| 1233 | Sets an Boolean value for a given PCD token. |
nothing calls this directly
no test coverage detected