LookupPrivilegeNameW method

int LookupPrivilegeNameW(
  1. Pointer<Uint16> lpSystemName,
  2. Pointer<PLUID> lpLuid,
  3. Pointer<Uint16> lpName,
  4. Pointer<Uint64> cchName,
)

Implementation

int LookupPrivilegeNameW(
  ffi.Pointer<ffi.Uint16> lpSystemName,
  ffi.Pointer<PLUID> lpLuid,
  ffi.Pointer<ffi.Uint16> lpName,
  ffi.Pointer<ffi.Uint64> cchName,
) {
  return (_LookupPrivilegeNameW ??= _dylib.lookupFunction<
      _c_LookupPrivilegeNameW,
      _dart_LookupPrivilegeNameW>('LookupPrivilegeNameW'))(
    lpSystemName,
    lpLuid,
    lpName,
    cchName,
  );
}