BindIoCompletionCallback method
int
BindIoCompletionCallback(
- Pointer<
Void> FileHandle, - Pointer<
NativeFunction< Function_1,LPOVERLAPPED_COMPLETION_ROUTINE> > - int Flags
Implementation
int BindIoCompletionCallback(
ffi.Pointer<ffi.Void> FileHandle,
ffi.Pointer<ffi.NativeFunction<LPOVERLAPPED_COMPLETION_ROUTINE>> Function_1,
int Flags,
) {
return (_BindIoCompletionCallback ??= _dylib.lookupFunction<
_c_BindIoCompletionCallback,
_dart_BindIoCompletionCallback>('BindIoCompletionCallback'))(
FileHandle,
Function_1,
Flags,
);
}