summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Compatibility
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-29 09:02:49 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-29 09:02:49 +0000
commit2be3c946647fb53642956362db7a3fe6770d3c1f (patch)
tree632e2f4b58672297c68e88a264e0b748f19d318f /EdkCompatibilityPkg/Compatibility
parent001d920c76fd669593503099c75733b692c84287 (diff)
downloadedk2-platforms-2be3c946647fb53642956362db7a3fe6770d3c1f.tar.xz
Update to doxygen comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5310 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Compatibility')
-rw-r--r--EdkCompatibilityPkg/Compatibility/ReadOnlyVariable2ToReadOnlyVariableThunk/ReadOnlyVariable2ToReadOnlyVariableThunk.c85
-rw-r--r--EdkCompatibilityPkg/Compatibility/ReadOnlyVariableToReadOnlyVariable2Thunk/ReadOnlyVariableToReadOnlyVariable2Thunk.c87
2 files changed, 61 insertions, 111 deletions
diff --git a/EdkCompatibilityPkg/Compatibility/ReadOnlyVariable2ToReadOnlyVariableThunk/ReadOnlyVariable2ToReadOnlyVariableThunk.c b/EdkCompatibilityPkg/Compatibility/ReadOnlyVariable2ToReadOnlyVariableThunk/ReadOnlyVariable2ToReadOnlyVariableThunk.c
index ee8156573c..d7d4df6ebc 100644
--- a/EdkCompatibilityPkg/Compatibility/ReadOnlyVariable2ToReadOnlyVariableThunk/ReadOnlyVariable2ToReadOnlyVariableThunk.c
+++ b/EdkCompatibilityPkg/Compatibility/ReadOnlyVariable2ToReadOnlyVariableThunk/ReadOnlyVariable2ToReadOnlyVariableThunk.c
@@ -116,6 +116,21 @@ Returns:
return PeiServicesInstallPpi (&mPpiListVariable);
}
+/**
+ Provide the read variable functionality of the variable services.
+
+ @param PeiServices General purpose services available to every PEIM.
+ @param VariableName The variable name
+ @param VendorGuid The vendor's GUID
+ @param Attributes Pointer to the attribute
+ @param DataSize Size of data
+ @param Data Pointer to data
+
+ @retval EFI_SUCCESS The interface could be successfully installed
+ @retval EFI_NOT_FOUND The variable could not be discovered
+ @retval EFI_BUFFER_TOO_SMALL The caller buffer is not large enough
+
+**/
EFI_STATUS
EFIAPI
PeiGetVariable (
@@ -126,35 +141,6 @@ PeiGetVariable (
IN OUT UINTN *DataSize,
OUT VOID *Data
)
-/*++
-
-Routine Description:
-
- Provide the read variable functionality of the variable services.
-
-Arguments:
-
- PeiServices - General purpose services available to every PEIM.
-
- VariableName - The variable name
-
- VendorGuid - The vendor's GUID
-
- Attributes - Pointer to the attribute
-
- DataSize - Size of data
-
- Data - Pointer to data
-
-Returns:
-
- EFI_SUCCESS - The interface could be successfully installed
-
- EFI_NOT_FOUND - The variable could not be discovered
-
- EFI_BUFFER_TOO_SMALL - The caller buffer is not large enough
-
---*/
{
EFI_STATUS Status;
EFI_PEI_READ_ONLY_VARIABLE_PPI *ReadOnlyVariable;
@@ -177,6 +163,21 @@ Returns:
);
}
+/**
+ Provide the get next variable functionality of the variable services.
+
+ @param PeiServices General purpose services available to every PEIM.
+ @param VariabvleNameSize The variable name's size.
+ @param VariableName A pointer to the variable's name.
+ @param VariableGuid A pointer to the EFI_GUID structure.
+ @param VariableNameSize Size of the variable name
+ @param VariableName The variable name
+ @param VendorGuid The vendor's GUID
+
+ @retval EFI_SUCCESS The interface could be successfully installed
+ @retval EFI_NOT_FOUND The variable could not be discovered
+
+**/
EFI_STATUS
EFIAPI
PeiGetNextVariableName (
@@ -185,32 +186,6 @@ PeiGetNextVariableName (
IN OUT CHAR16 *VariableName,
IN OUT EFI_GUID *VariableGuid
)
-/*++
-
-Routine Description:
-
- Provide the get next variable functionality of the variable services.
-
-Arguments:
-
- PeiServices - General purpose services available to every PEIM.
- VariabvleNameSize - The variable name's size.
- VariableName - A pointer to the variable's name.
- VariableGuid - A pointer to the EFI_GUID structure.
-
- VariableNameSize - Size of the variable name
-
- VariableName - The variable name
-
- VendorGuid - The vendor's GUID
-
-Returns:
-
- EFI_SUCCESS - The interface could be successfully installed
-
- EFI_NOT_FOUND - The variable could not be discovered
-
---*/
{
EFI_STATUS Status;
EFI_PEI_READ_ONLY_VARIABLE_PPI *ReadOnlyVariable;
diff --git a/EdkCompatibilityPkg/Compatibility/ReadOnlyVariableToReadOnlyVariable2Thunk/ReadOnlyVariableToReadOnlyVariable2Thunk.c b/EdkCompatibilityPkg/Compatibility/ReadOnlyVariableToReadOnlyVariable2Thunk/ReadOnlyVariableToReadOnlyVariable2Thunk.c
index 06dd4ccff3..fcb6fb53f1 100644
--- a/EdkCompatibilityPkg/Compatibility/ReadOnlyVariableToReadOnlyVariable2Thunk/ReadOnlyVariableToReadOnlyVariable2Thunk.c
+++ b/EdkCompatibilityPkg/Compatibility/ReadOnlyVariableToReadOnlyVariable2Thunk/ReadOnlyVariableToReadOnlyVariable2Thunk.c
@@ -74,7 +74,7 @@ EFI_PEI_PPI_DESCRIPTOR mPpiListVariable = {
@retval EFI_SUCCESS If the gEfiPeiReadOnlyVariablePpiGuid interface could be successfully installed.
---*/
+**/
EFI_STATUS
EFIAPI
PeimInitializeReadOnlyVariable (
@@ -98,6 +98,21 @@ PeimInitializeReadOnlyVariable (
return (*PeiServices)->InstallPpi (PeiServices, &mPpiListVariable);
}
+/**
+ Provide the read variable functionality of the variable services.
+
+ @param PeiServices General purpose services available to every PEIM.
+ @param VariableName The variable name
+ @param VendorGuid The vendor's GUID
+ @param Attributes Pointer to the attribute
+ @param DataSize Size of data
+ @param Data Pointer to data
+
+ @retval EFI_SUCCESS The interface could be successfully installed
+ @retval EFI_NOT_FOUND The variable could not be discovered
+ @retval EFI_BUFFER_TOO_SMALL The caller buffer is not large enough
+
+**/
EFI_STATUS
EFIAPI
PeiGetVariable (
@@ -108,35 +123,6 @@ PeiGetVariable (
IN OUT UINTN *DataSize,
OUT VOID *Data
)
-/*++
-
-Routine Description:
-
- Provide the read variable functionality of the variable services.
-
-Arguments:
-
- PeiServices - General purpose services available to every PEIM.
-
- VariableName - The variable name
-
- VendorGuid - The vendor's GUID
-
- Attributes - Pointer to the attribute
-
- DataSize - Size of data
-
- Data - Pointer to data
-
-Returns:
-
- EFI_SUCCESS - The interface could be successfully installed
-
- EFI_NOT_FOUND - The variable could not be discovered
-
- EFI_BUFFER_TOO_SMALL - The caller buffer is not large enough
-
---*/
{
EFI_STATUS Status;
EFI_PEI_READ_ONLY_VARIABLE2_PPI *ReadOnlyVariable2;
@@ -160,6 +146,21 @@ Returns:
);
}
+/**
+ Provide the get next variable functionality of the variable services.
+
+ @param PeiServices General purpose services available to every PEIM.
+ @param VariabvleNameSize The variable name's size.
+ @param VariableName A pointer to the variable's name.
+ @param VariableGuid A pointer to the EFI_GUID structure.
+ @param VariableNameSize Size of the variable name
+ @param VariableName The variable name
+ @param VendorGuid The vendor's GUID
+
+ @retval EFI_SUCCESS The interface could be successfully installed
+ @retval EFI_NOT_FOUND The variable could not be discovered
+
+**/
EFI_STATUS
EFIAPI
PeiGetNextVariableName (
@@ -168,32 +169,6 @@ PeiGetNextVariableName (
IN OUT CHAR16 *VariableName,
IN OUT EFI_GUID *VendorGuid
)
-/*++
-
-Routine Description:
-
- Provide the get next variable functionality of the variable services.
-
-Arguments:
-
- PeiServices - General purpose services available to every PEIM.
- VariabvleNameSize - The variable name's size.
- VariableName - A pointer to the variable's name.
- VariableGuid - A pointer to the EFI_GUID structure.
-
- VariableNameSize - Size of the variable name
-
- VariableName - The variable name
-
- VendorGuid - The vendor's GUID
-
-Returns:
-
- EFI_SUCCESS - The interface could be successfully installed
-
- EFI_NOT_FOUND - The variable could not be discovered
-
---*/
{
EFI_STATUS Status;
EFI_PEI_READ_ONLY_VARIABLE2_PPI *ReadOnlyVariable2;