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 a3cbaff commit 407c17aCopy full SHA for 407c17a
library/std/src/sys/pal/windows/c.rs
@@ -20,7 +20,6 @@ pub use windows_sys::*;
20
pub type DWORD = c_ulong;
21
pub type ULONG = c_ulong;
22
23
-pub type LPOVERLAPPED = *mut OVERLAPPED;
24
pub type LPSECURITY_ATTRIBUTES = *mut SECURITY_ATTRIBUTES;
25
pub type LPVOID = *mut c_void;
26
library/std/src/sys/pal/windows/pipe.rs
@@ -227,7 +227,7 @@ type AlertableIoFn = unsafe extern "system" fn(
227
BorrowedHandle<'_>,
228
c::LPVOID,
229
c::DWORD,
230
- c::LPOVERLAPPED,
+ *mut c::OVERLAPPED,
231
c::LPOVERLAPPED_COMPLETION_ROUTINE,
232
) -> c::BOOL;
233
0 commit comments