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] TokenNumber The PCD token number. @param[in, out] SizeOfBuffer A pointer to the length of the value being set for the PCD to
| 808 | |
| 809 | **/ |
| 810 | EFI_STATUS |
| 811 | EFIAPI |
| 812 | DxePcdSetPtr ( |
| 813 | IN UINTN TokenNumber, |
| 814 | IN OUT UINTN *SizeOfBuffer, |
| 815 | IN VOID *Buffer |
| 816 | ) |
| 817 | { |
| 818 | return SetWorker (TokenNumber, Buffer, SizeOfBuffer, TRUE); |
| 819 | } |
| 820 | |
| 821 | /** |
| 822 | Sets an Boolean value for a given PCD token. |
nothing calls this directly
no test coverage detected