GetHandleInformation method

int GetHandleInformation(
  1. Pointer<Void> hObject,
  2. Pointer<Uint64> lpdwFlags
)

Implementation

int GetHandleInformation(
  ffi.Pointer<ffi.Void> hObject,
  ffi.Pointer<ffi.Uint64> lpdwFlags,
) {
  return (_GetHandleInformation ??= _dylib.lookupFunction<
      _c_GetHandleInformation,
      _dart_GetHandleInformation>('GetHandleInformation'))(
    hObject,
    lpdwFlags,
  );
}