Remove LPOVERLAPPED

This commit is contained in:
Chris Denton 2024-07-14 07:10:00 +00:00
parent 8052fb8f3c
commit 1b7cf3a3f2
No known key found for this signature in database
GPG Key ID: 713472F2F45627DE
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@ pub type DWORD = c_ulong;
pub type WCHAR = u16;
pub type ULONG = c_ulong;
pub type LPOVERLAPPED = *mut OVERLAPPED;
pub type LPSECURITY_ATTRIBUTES = *mut SECURITY_ATTRIBUTES;
pub type LPVOID = *mut c_void;

View File

@ -227,7 +227,7 @@ type AlertableIoFn = unsafe extern "system" fn(
BorrowedHandle<'_>,
c::LPVOID,
c::DWORD,
c::LPOVERLAPPED,
*mut c::OVERLAPPED,
c::LPOVERLAPPED_COMPLETION_ROUTINE,
) -> c::BOOL;