WNetGetResourceInformationW method

int WNetGetResourceInformationW(
  1. Pointer<LPNETRESOURCEW> lpNetResource,
  2. Pointer<Void> lpBuffer,
  3. Pointer<Uint64> lpcbBuffer,
  4. Pointer<Pointer<Uint16>> lplpSystem,
)

Implementation

int WNetGetResourceInformationW(
  ffi.Pointer<LPNETRESOURCEW> lpNetResource,
  ffi.Pointer<ffi.Void> lpBuffer,
  ffi.Pointer<ffi.Uint64> lpcbBuffer,
  ffi.Pointer<ffi.Pointer<ffi.Uint16>> lplpSystem,
) {
  return (_WNetGetResourceInformationW ??= _dylib.lookupFunction<
      _c_WNetGetResourceInformationW,
      _dart_WNetGetResourceInformationW>('WNetGetResourceInformationW'))(
    lpNetResource,
    lpBuffer,
    lpcbBuffer,
    lplpSystem,
  );
}