mirror of https://github.com/acidanthera/audk.git
synchronize paramter string with comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6174 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3b1abda484
commit
d305754388
|
@ -443,16 +443,16 @@ LibPcdSet64 (
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets a buffer for the token specified by TokenNumber to the value
|
Sets a buffer for the token specified by TokenNumber to the value
|
||||||
specified by Buffer and SizeOfValue. Buffer is returned.
|
specified by Buffer and SizeOfBuffer. Buffer is returned.
|
||||||
If SizeOfValue is greater than the maximum size support by TokenNumber,
|
If SizeOfBuffer is greater than the maximum size support by TokenNumber,
|
||||||
then set SizeOfValue to the maximum size supported by TokenNumber and
|
then set SizeOfBuffer to the maximum size supported by TokenNumber and
|
||||||
return NULL to indicate that the set operation was not actually performed.
|
return NULL to indicate that the set operation was not actually performed.
|
||||||
|
|
||||||
If SizeOfValue is set to MAX_ADDRESS, then SizeOfValue must be set to the
|
If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the
|
||||||
maximum size supported by TokenName and NULL must be returned.
|
maximum size supported by TokenName and NULL must be returned.
|
||||||
|
|
||||||
If SizeOfValue is NULL, then ASSERT().
|
If SizeOfBuffer is NULL, then ASSERT().
|
||||||
If SizeOfValue > 0 and Buffer is NULL, then ASSERT().
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
||||||
|
|
||||||
@param[in] TokenNumber The PCD token number to set a current value for.
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
||||||
@param[in,out] SizeOfBuffer The size, in bytes, of Buffer.
|
@param[in,out] SizeOfBuffer The size, in bytes, of Buffer.
|
||||||
|
@ -578,14 +578,14 @@ LibPcdSetEx64 (
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets a buffer for the token specified by TokenNumber to the value specified by
|
Sets a buffer for the token specified by TokenNumber to the value specified by
|
||||||
Buffer and SizeOfValue. Buffer is returned. If SizeOfValue is greater than
|
Buffer and SizeOfBuffer. Buffer is returned. If SizeOfBuffer is greater than
|
||||||
the maximum size support by TokenNumber, then set SizeOfValue to the maximum size
|
the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size
|
||||||
supported by TokenNumber and return NULL to indicate that the set operation
|
supported by TokenNumber and return NULL to indicate that the set operation
|
||||||
was not actually performed.
|
was not actually performed.
|
||||||
|
|
||||||
If Guid is NULL, then ASSERT().
|
If Guid is NULL, then ASSERT().
|
||||||
If SizeOfValue is NULL, then ASSERT().
|
If SizeOfBuffer is NULL, then ASSERT().
|
||||||
If SizeOfValue > 0 and Buffer is NULL, then ASSERT().
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
||||||
|
|
||||||
@param[in] Guid Pointer to a 128-bit unique value that
|
@param[in] Guid Pointer to a 128-bit unique value that
|
||||||
designates which namespace to set a value from.
|
designates which namespace to set a value from.
|
||||||
|
@ -749,15 +749,15 @@ LibPcdGetNextTokenSpace (
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets the PCD entry specified by PatchVariable to the value specified by Buffer
|
Sets the PCD entry specified by PatchVariable to the value specified by Buffer
|
||||||
and SizeOfValue. Buffer is returned. If SizeOfValue is greater than
|
and SizeOfBuffer. Buffer is returned. If SizeOfBuffer is greater than
|
||||||
MaximumDatumSize, then set SizeOfValue to MaximumDatumSize and return
|
MaximumDatumSize, then set SizeOfBuffer to MaximumDatumSize and return
|
||||||
NULL to indicate that the set operation was not actually performed.
|
NULL to indicate that the set operation was not actually performed.
|
||||||
If SizeOfValue is set to MAX_ADDRESS, then SizeOfValue must be set to
|
If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to
|
||||||
MaximumDatumSize and NULL must be returned.
|
MaximumDatumSize and NULL must be returned.
|
||||||
|
|
||||||
If PatchVariable is NULL, then ASSERT().
|
If PatchVariable is NULL, then ASSERT().
|
||||||
If SizeOfValue is NULL, then ASSERT().
|
If SizeOfBuffer is NULL, then ASSERT().
|
||||||
If SizeOfValue > 0 and Buffer is NULL, then ASSERT().
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
||||||
|
|
||||||
@param[in] PatchVariable A pointer to the global variable in a module that is
|
@param[in] PatchVariable A pointer to the global variable in a module that is
|
||||||
the target of the set operation.
|
the target of the set operation.
|
||||||
|
|
Loading…
Reference in New Issue