WNetGetResourceInformationA method

int WNetGetResourceInformationA(
  1. Pointer<LPNETRESOURCEA> lpNetResource,
  2. Pointer<Void> lpBuffer,
  3. Pointer<Uint64> lpcbBuffer,
  4. Pointer<Pointer<Int8>> lplpSystem,
)

Implementation

int WNetGetResourceInformationA(
  ffi.Pointer<LPNETRESOURCEA> lpNetResource,
  ffi.Pointer<ffi.Void> lpBuffer,
  ffi.Pointer<ffi.Uint64> lpcbBuffer,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> lplpSystem,
) {
  return (_WNetGetResourceInformationA ??= _dylib.lookupFunction<
      _c_WNetGetResourceInformationA,
      _dart_WNetGetResourceInformationA>('WNetGetResourceInformationA'))(
    lpNetResource,
    lpBuffer,
    lpcbBuffer,
    lplpSystem,
  );
}