summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-21 18:07:48 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-21 18:07:48 +0000
commit84c11ea2ba3fc223e98394a2afbda60f92abe076 (patch)
tree8faab16bc2b3d44f27b4d61fc5e34ff22a804fb8 /MdePkg/Include/Protocol
parent2d824143fe7dec70ad07e7d00d70c733ff87f8fd (diff)
downloadedk2-platforms-84c11ea2ba3fc223e98394a2afbda60f92abe076.tar.xz
Adjust doxygen comment style for structure.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6176 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol')
-rw-r--r--MdePkg/Include/Protocol/LoadedImage.h74
1 files changed, 16 insertions, 58 deletions
diff --git a/MdePkg/Include/Protocol/LoadedImage.h b/MdePkg/Include/Protocol/LoadedImage.h
index c31b27545a..9a2a94ab0b 100644
--- a/MdePkg/Include/Protocol/LoadedImage.h
+++ b/MdePkg/Include/Protocol/LoadedImage.h
@@ -49,76 +49,34 @@
/// Can be used on any image handle to obtain information about the loaded image.
///
typedef struct {
- ///
- /// Defines the revision of the EFI_LOADED_IMAGE_PROTOCOL structure.
- /// All future revisions will be backward compatible to the current revision.
- ///
- UINT32 Revision;
-
- ///
- /// Parent image's image handle. NULL if the image is loaded directly from
- /// the firmware's boot manager.
- ///
- EFI_HANDLE ParentHandle;
-
- ///
- /// the image's EFI system table pointer.
- ///
- EFI_SYSTEM_TABLE *SystemTable;
+ UINT32 Revision; ///< Defines the revision of the EFI_LOADED_IMAGE_PROTOCOL structure.
+ ///< All future revisions will be backward compatible to the current revision.
+ EFI_HANDLE ParentHandle; ///< Parent image's image handle. NULL if the image is loaded directly from
+ ///< the firmware's boot manager.
+ EFI_SYSTEM_TABLE *SystemTable; ///< the image's EFI system table pointer.
//
// Source location of image
//
- ///
- /// The device handle that the EFI Image was loaded from.
- ///
- EFI_HANDLE DeviceHandle;
-
- ///
- /// A pointer to the file path portion specific to DeviceHandle
- /// that the EFI Image was loaded from.
- ///
- EFI_DEVICE_PATH_PROTOCOL *FilePath;
- VOID *Reserved; ///< Reserved. DO NOT USE.
+ EFI_HANDLE DeviceHandle; ///< The device handle that the EFI Image was loaded from.
+ EFI_DEVICE_PATH_PROTOCOL *FilePath; ///< A pointer to the file path portion specific to DeviceHandle
+ ///< that the EFI Image was loaded from.
+ VOID *Reserved; ///< Reserved. DO NOT USE.
//
// Images load options
//
- ///
- /// The size in bytes of LoadOptions.
- ///
- UINT32 LoadOptionsSize;
-
- ///
- /// A pointer to the image's binary load options.
- ///
- VOID *LoadOptions;
+ UINT32 LoadOptionsSize;///< The size in bytes of LoadOptions.
+ VOID *LoadOptions; ///< A pointer to the image's binary load options.
//
// Location of where image was loaded
//
- ///
- /// The base address at which the image was loaded.
- ///
- VOID *ImageBase;
-
- ///
- /// The size in bytes of the loaded image.
- ///
- UINT64 ImageSize;
-
- ///
- /// The memory type that the code sections were loaded as.
- ///
- EFI_MEMORY_TYPE ImageCodeType;
-
- ///
- /// The memory type that the data sections were loaded as.
- ///
- EFI_MEMORY_TYPE ImageDataType;
-
- EFI_IMAGE_UNLOAD Unload;
-
+ VOID *ImageBase; ///< The base address at which the image was loaded.
+ UINT64 ImageSize; ///< The size in bytes of the loaded image.
+ EFI_MEMORY_TYPE ImageCodeType; ///< The memory type that the code sections were loaded as.
+ EFI_MEMORY_TYPE ImageDataType; ///< The memory type that the data sections were loaded as.
+ EFI_IMAGE_UNLOAD Unload;
} EFI_LOADED_IMAGE_PROTOCOL;
//