Skip to content

Commit 6d037b8

Browse files
committed
Remove LPOVERLAPPED
1 parent 61f617d commit 6d037b8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

-1
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

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

+1-1
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)