Skip to content

Commit

Permalink
fixup! Add ShellParams protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAZoidberg committed Apr 28, 2023
1 parent eed9274 commit a9e69b3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion uefi/src/proto/shell_params.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
//! `ShellParams` protocol
use crate::proto::unsafe_protocol;
use crate::{CStr16, Char16};
use crate::Char16;
use core::ffi::c_void;

#[cfg(feature = "alloc")]
use crate::CStr16;
#[cfg(feature = "alloc")]
use alloc::string::String;
#[cfg(feature = "alloc")]
use alloc::string::ToString;
#[cfg(feature = "alloc")]
use alloc::vec;
#[cfg(feature = "alloc")]
use alloc::vec::Vec;

type ShellFileHandle = *const c_void;
Expand Down

0 comments on commit a9e69b3

Please sign in to comment.