10000
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 61f617d commit 6d037b8Copy full SHA for 6d037b8
std/src/sys/pal/windows/c.rs
@@ -21,7 +21,6 @@ pub type DWORD = c_ulong;
21
pub type WCHAR = u16;
22
pub type ULONG = c_ulong;
23
24
-pub type LPOVERLAPPED = *mut OVERLAPPED;
25
pub type LPSECURITY_ATTRIBUTES = *mut SECURITY_ATTRIBUTES;
26
pub type LPVOID = *mut c_void;
27
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