Skip to content

Commit 39c9e43

Browse files
committed
Remove LPOVERLAPPED
1 parent 5fb295b commit 39c9e43

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
@@ -21,7 +21,6 @@ pub type DWORD = c_ulong;
2121
pub type WCHAR = u16;
2222
pub type ULONG = c_ulong;
2323

24-
pub type LPOVERLAPPED = *mut OVERLAPPED;
2524
pub type LPSECURITY_ATTRIBUTES = *mut SECURITY_ATTRIBUTES;
2625
pub type LPVOID = *mut c_void;
2726

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)