summaryrefslogtreecommitdiff
path: root/IntelFrameworkPkg
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-24 02:18:54 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-24 02:18:54 +0000
commit4e97801cfaa9859814ea838f93f18fb7d64e2e26 (patch)
tree65fb50ae396e3320c3f4162b67f97228277addf4 /IntelFrameworkPkg
parent322016e52d62dc5432e4469aa7d4cf20d4c30f78 (diff)
downloadedk2-4e97801cfaa9859814ea838f93f18fb7d64e2e26.zip
edk2-4e97801cfaa9859814ea838f93f18fb7d64e2e26.tar.gz
edk2-4e97801cfaa9859814ea838f93f18fb7d64e2e26.tar.bz2
Update structure's comments to doxygen style.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8635 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg')
-rw-r--r--IntelFrameworkPkg/Include/Protocol/DataHub.h35
1 files changed, 18 insertions, 17 deletions
diff --git a/IntelFrameworkPkg/Include/Protocol/DataHub.h b/IntelFrameworkPkg/Include/Protocol/DataHub.h
index 69e5058..82bd928 100644
--- a/IntelFrameworkPkg/Include/Protocol/DataHub.h
+++ b/IntelFrameworkPkg/Include/Protocol/DataHub.h
@@ -6,7 +6,7 @@
For more information please look at Intel Platform Innovation
Framework for EFI Data Hub Specification.
- Copyright (c) 2007, Intel Corporation
+ Copyright (c) 2007 - 2009, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -184,28 +184,29 @@ EFI_STATUS
);
/**
- @par Protocol Description:
This protocol is used to log information and register filter drivers
to receive data records.
-
- @param LogData
- Logs a data record.
-
- @param GetNextDataRecord
- Gets a data record. Used both to view the memory-based log and to
- get information about which data records have been consumed by a filter driver.
-
- @param RegisterFilterDriver
- Allows the registration of an EFI event to act as a filter driver for all data records that are logged.
-
- @param UnregisterFilterDriver
- Used to remove a filter driver that was added with RegisterFilterDriver().
-
**/
struct _EFI_DATA_HUB_PROTOCOL {
- EFI_DATA_HUB_LOG_DATA LogData;
+ ///
+ /// Logs a data record.
+ ///
+ EFI_DATA_HUB_LOG_DATA LogData;
+
+ ///
+ /// Gets a data record. Used both to view the memory-based log and to
+ /// get information about which data records have been consumed by a filter driver.
+ ///
EFI_DATA_HUB_GET_NEXT_RECORD GetNextRecord;
+
+ ///
+ /// Allows the registration of an EFI event to act as a filter driver for all data records that are logged.
+ ///
EFI_DATA_HUB_REGISTER_FILTER_DRIVER RegisterFilterDriver;
+
+ ///
+ /// Used to remove a filter driver that was added with RegisterFilterDriver().
+ ///
EFI_DATA_HUB_UNREGISTER_FILTER_DRIVER UnregisterFilterDriver;
};