We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed9274 commit a9e69b3Copy full SHA for a9e69b3
uefi/src/proto/shell_params.rs
@@ -1,13 +1,18 @@
1
//! `ShellParams` protocol
2
3
use crate::proto::unsafe_protocol;
4
-use crate::{CStr16, Char16};
+use crate::Char16;
5
use core::ffi::c_void;
6
7
+#[cfg(feature = "alloc")]
8
+use crate::CStr16;
9
#[cfg(feature = "alloc")]
10
use alloc::string::String;
11
12
use alloc::string::ToString;
13
14
use alloc::vec;
15
16
use alloc::vec::Vec;
17
18
type ShellFileHandle = *const c_void;
0 commit comments