We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1105f4a + 33c6c3a commit 33530e4Copy full SHA for 33530e4
library/std/src/sys/pal/windows/c.rs
@@ -237,6 +237,17 @@ compat_fn_with_fallback! {
237
STATUS_NOT_IMPLEMENTED
238
}
239
#[cfg(target_vendor = "uwp")]
240
+ pub fn NtOpenFile(
241
+ filehandle: *mut HANDLE,
242
+ desiredaccess: u32,
243
+ objectattributes: *const OBJECT_ATTRIBUTES,
244
+ iostatusblock: *mut IO_STATUS_BLOCK,
245
+ shareaccess: u32,
246
+ openoptions: u32
247
+ ) -> NTSTATUS {
248
+ STATUS_NOT_IMPLEMENTED
249
+ }
250
+ #[cfg(target_vendor = "uwp")]
251
pub fn NtReadFile(
252
filehandle: HANDLE,
253
event: HANDLE,
0 commit comments