WNetGetConnectionA method

int WNetGetConnectionA(
  1. Pointer<Int8> lpLocalName,
  2. Pointer<Int8> lpRemoteName,
  3. Pointer<Uint64> lpnLength
)

Implementation

int WNetGetConnectionA(
  ffi.Pointer<ffi.Int8> lpLocalName,
  ffi.Pointer<ffi.Int8> lpRemoteName,
  ffi.Pointer<ffi.Uint64> lpnLength,
) {
  return (_WNetGetConnectionA ??=
      _dylib.lookupFunction<_c_WNetGetConnectionA, _dart_WNetGetConnectionA>(
          'WNetGetConnectionA'))(
    lpLocalName,
    lpRemoteName,
    lpnLength,
  );
}