Adjust doxygen comment style for structure.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6176 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2008-10-21 18:07:48 +00:00
parent 2d824143fe
commit 84c11ea2ba

View File

@ -49,76 +49,34 @@
/// Can be used on any image handle to obtain information about the loaded image. /// Can be used on any image handle to obtain information about the loaded image.
/// ///
typedef struct { typedef struct {
/// UINT32 Revision; ///< Defines the revision of the EFI_LOADED_IMAGE_PROTOCOL structure.
/// Defines the revision of the EFI_LOADED_IMAGE_PROTOCOL structure. ///< All future revisions will be backward compatible to the current revision.
/// 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.
UINT32 Revision; EFI_SYSTEM_TABLE *SystemTable; ///< the image's EFI system table pointer.
///
/// 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;
// //
// Source location of image // Source location of image
// //
/// EFI_HANDLE DeviceHandle; ///< The device handle that the EFI Image was loaded from.
/// 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.
EFI_HANDLE DeviceHandle; VOID *Reserved; ///< Reserved. DO NOT USE.
///
/// 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.
// //
// Images load options // Images load options
// //
/// UINT32 LoadOptionsSize;///< The size in bytes of LoadOptions.
/// The size in bytes of LoadOptions. VOID *LoadOptions; ///< A pointer to the image's binary load options.
///
UINT32 LoadOptionsSize;
///
/// A pointer to the image's binary load options.
///
VOID *LoadOptions;
// //
// Location of where image was loaded // Location of where image was loaded
// //
/// VOID *ImageBase; ///< The base address at which the image was loaded.
/// 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.
VOID *ImageBase; EFI_MEMORY_TYPE ImageDataType; ///< The memory type that the data sections were loaded as.
EFI_IMAGE_UNLOAD Unload;
///
/// 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;
} EFI_LOADED_IMAGE_PROTOCOL; } EFI_LOADED_IMAGE_PROTOCOL;
// //