Skip to content

Commit 407c17a

Browse files
committed
Remove LPOVERLAPPED
1 parent a3cbaff commit 407c17a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

library/std/src/sys/pal/windows/c.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ pub use windows_sys::*;
2020
pub type DWORD = c_ulong;
2121
pub type ULONG = c_ulong;
2222

23-
pub type LPOVERLAPPED = *mut OVERLAPPED;
2423
pub type LPSECURITY_ATTRIBUTES = *mut SECURITY_ATTRIBUTES;
2524
pub type LPVOID = *mut c_void;
2625

library/std/src/sys/pal/windows/pipe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ type AlertableIoFn = unsafe extern "system" fn(
227227
BorrowedHandle<'_>,
228228
c::LPVOID,
229229
c::DWORD,
230-
c::LPOVERLAPPED,
230+
*mut c::OVERLAPPED,
231231
c::LPOVERLAPPED_COMPLETION_ROUTINE,
232232
) -> c::BOOL;
233233

0 commit comments

Comments
 (0)