• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! Re-export of low-level UEFI types but prefixed with `Uefi`. This simplifies
2 //! to differ between high-level and low-level types and interfaces in this
3 //! module.
4 
5 pub use crate::proto::media::file::{
6     Directory as UefiDirectoryHandle, File as UefiFileTrait, FileAttribute as UefiFileAttribute,
7     FileHandle as UefiFileHandle, FileInfo as UefiFileInfo, FileMode as UefiFileMode,
8     FileType as UefiFileType,
9 };
10 pub use crate::proto::media::fs::SimpleFileSystem as SimpleFileSystemProtocol;
11