pub unsafe fn WSAIoctl<P0>(
    s: P0,
    dwiocontrolcode: u32,
    lpvinbuffer: Option<*const c_void>,
    cbinbuffer: u32,
    lpvoutbuffer: Option<*mut c_void>,
    cboutbuffer: u32,
    lpcbbytesreturned: *mut u32,
    lpoverlapped: Option<*mut OVERLAPPED>,
    lpcompletionroutine: LPWSAOVERLAPPED_COMPLETION_ROUTINE
) -> i32
where P0: IntoParam<SOCKET>,