]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h
Updated headers to follow coding standard
[mirror_edk2.git] / MdePkg / Include / Guid / FileSystemVolumeLabelInfo.h
1 /** @file
2 FileSystemVolumeLabelInfo guid and data structure as defined in the EFI 1.0 specification.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef __FILE_SYSTEM_VOLUME_LABEL_INFO_H__
16 #define __FILE_SYSTEM_VOLUME_LABEL_INFO_H__
17
18 #define EFI_FILE_SYSTEM_VOLUME_LABEL_INFO_ID_GUID \
19 { \
20 0xDB47D7D3, 0xFE81, 0x11d3, {0x9A, 0x35, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } \
21 }
22
23 //
24 // Protocol Name defined in spec.
25 //
26 #define EFI_FILE_SYSTEM_VOLUME_LABEL_ID \
27 EFI_FILE_SYSTEM_VOLUME_LABEL_INFO_ID_GUID
28
29 typedef struct {
30 CHAR16 VolumeLabel[1];
31 } EFI_FILE_SYSTEM_VOLUME_LABEL_INFO;
32
33 typedef EFI_FILE_SYSTEM_VOLUME_LABEL_INFO EFI_FILE_SYSTEM_VOLUME_LABEL;
34
35 #define SIZE_OF_EFI_FILE_SYSTEM_VOLUME_LABEL_INFO \
36 EFI_FIELD_OFFSET (EFI_FILE_SYSTEM_VOLUME_LABEL_INFO, VolumeLabel)
37
38 extern EFI_GUID gEfiFileSystemVolumeLabelInfoIdGuid;
39
40 #endif