pub type LPFN_CONNECTEX = Option<unsafe extern "system" fn(s: SOCKET, name: *const SOCKADDR, namelen: i32, lpsendbuffer: *const c_void, dwsenddatalength: u32, lpdwbytessent: *mut u32, lpoverlapped: *mut OVERLAPPED) -> BOOL>;

Aliased Type§

enum LPFN_CONNECTEX {
    None,
    Some(unsafe extern "system" fn(_: SOCKET, _: *const SOCKADDR, _: i32, _: *const c_void, _: u32, _: *mut u32, _: *mut OVERLAPPED) -> BOOL),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(_: SOCKET, _: *const SOCKADDR, _: i32, _: *const c_void, _: u32, _: *mut u32, _: *mut OVERLAPPED) -> BOOL)

Some value of type T.