2007-06-19 12:29:07 +02:00
|
|
|
/** @file
|
2008-12-08 04:24:04 +01:00
|
|
|
Provides a GUID and a data structure that can be used with EFI_FILE_PROTOCOL.GetInfo()
|
|
|
|
or EFI_FILE_PROTOCOL.SetInfo() to get or set information about the system's volume.
|
2009-06-04 18:16:15 +02:00
|
|
|
This GUID is defined in UEFI specification.
|
2007-06-19 12:29:07 +02:00
|
|
|
|
2010-04-23 17:46:20 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-03-12 23:19:12 +01:00
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that accompanies this distribution.
|
|
|
|
The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-19 12:29:07 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __FILE_SYSTEM_INFO_H__
|
|
|
|
#define __FILE_SYSTEM_INFO_H__
|
|
|
|
|
2007-07-20 15:46:48 +02:00
|
|
|
#define EFI_FILE_SYSTEM_INFO_ID \
|
2007-06-19 12:29:07 +02:00
|
|
|
{ \
|
|
|
|
0x9576e93, 0x6d3f, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
2010-03-12 23:19:12 +01:00
|
|
|
/// The size of the EFI_FILE_SYSTEM_INFO structure, including the Null-terminated VolumeLabel string.
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
2007-06-19 12:29:07 +02:00
|
|
|
UINT64 Size;
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
|
|
|
/// TRUE if the volume only supports read access.
|
|
|
|
///
|
2007-06-19 12:29:07 +02:00
|
|
|
BOOLEAN ReadOnly;
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
|
|
|
/// The number of bytes managed by the file system.
|
|
|
|
///
|
2007-06-19 12:29:07 +02:00
|
|
|
UINT64 VolumeSize;
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
|
|
|
/// The number of available bytes for use by the file system.
|
|
|
|
///
|
2007-06-19 12:29:07 +02:00
|
|
|
UINT64 FreeSpace;
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
|
|
|
/// The nominal block size by which files are typically grown.
|
|
|
|
///
|
2007-06-19 12:29:07 +02:00
|
|
|
UINT32 BlockSize;
|
2008-12-08 04:24:04 +01:00
|
|
|
///
|
|
|
|
/// The Null-terminated string that is the volume's label.
|
|
|
|
///
|
2007-06-19 12:29:07 +02:00
|
|
|
CHAR16 VolumeLabel[1];
|
|
|
|
} EFI_FILE_SYSTEM_INFO;
|
|
|
|
|
2008-08-14 04:54:46 +02:00
|
|
|
///
|
|
|
|
/// The VolumeLabel field of the EFI_FILE_SYSTEM_INFO data structure is variable length.
|
|
|
|
/// Whenever code needs to know the size of the EFI_FILE_SYSTEM_INFO data structure, it needs
|
|
|
|
/// to be the size of the data structure without the VolumeLable field. The following macro
|
|
|
|
/// computes this size correctly no matter how big the VolumeLable array is declared.
|
|
|
|
/// This is required to make the EFI_FILE_SYSTEM_INFO data structure ANSI compilant.
|
|
|
|
///
|
2008-12-16 16:33:49 +01:00
|
|
|
#define SIZE_OF_EFI_FILE_SYSTEM_INFO OFFSET_OF (EFI_FILE_SYSTEM_INFO, VolumeLabel)
|
2007-06-19 12:29:07 +02:00
|
|
|
|
|
|
|
extern EFI_GUID gEfiFileSystemInfoGuid;
|
|
|
|
|
|
|
|
#endif
|