diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-09 14:04:41 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-09 14:04:41 +0000 |
commit | 992f22b99a90d1b217b1e6f702b238f1ff319753 (patch) | |
tree | 50fb6f472776aef941ad8a2661d9d776a9b6145c /MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h | |
parent | d0a915a5ad4efb7e2d0d7a29fc157bdf1b475d80 (diff) | |
download | edk2-platforms-992f22b99a90d1b217b1e6f702b238f1ff319753.tar.xz |
Add the detailed descriptions for the structure data member in these protocol.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6935 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h')
-rw-r--r-- | MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h b/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h index b9c2d4d4a5..20f798328d 100644 --- a/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h +++ b/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h @@ -17,25 +17,20 @@ #ifndef __FILE_SYSTEM_VOLUME_LABEL_INFO_H__
#define __FILE_SYSTEM_VOLUME_LABEL_INFO_H__
-#define EFI_FILE_SYSTEM_VOLUME_LABEL_INFO_ID_GUID \
+#define EFI_FILE_SYSTEM_VOLUME_LABEL_ID \
{ \
0xDB47D7D3, 0xFE81, 0x11d3, {0x9A, 0x35, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } \
}
-#define EFI_FILE_SYSTEM_VOLUME_LABEL_ID \
- EFI_FILE_SYSTEM_VOLUME_LABEL_INFO_ID_GUID
-
typedef struct {
///
/// The Null-terminated string that is the volume's label.
///
CHAR16 VolumeLabel[1];
-} EFI_FILE_SYSTEM_VOLUME_LABEL_INFO;
-
-typedef EFI_FILE_SYSTEM_VOLUME_LABEL_INFO EFI_FILE_SYSTEM_VOLUME_LABEL;
+} EFI_FILE_SYSTEM_VOLUME_LABEL;
-#define SIZE_OF_EFI_FILE_SYSTEM_VOLUME_LABEL_INFO \
- EFI_FIELD_OFFSET (EFI_FILE_SYSTEM_VOLUME_LABEL_INFO, VolumeLabel)
+#define SIZE_OF_EFI_FILE_SYSTEM_VOLUME_LABEL \
+ EFI_FIELD_OFFSET (EFI_FILE_SYSTEM_VOLUME_LABEL, VolumeLabel)
extern EFI_GUID gEfiFileSystemVolumeLabelInfoIdGuid;
|