LookupPrivilegeNameW method

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

Implementation

int LookupPrivilegeNameW(
  ffi.Pointer<ffi.Uint16> lpSystemName,
  ffi.Pointer<LUID> lpLuid,
  ffi.Pointer<ffi.Uint16> lpName,
  ffi.Pointer<ffi.Uint64> cchName,
) {
  return _LookupPrivilegeNameW(
    lpSystemName,
    lpLuid,
    lpName,
    cchName,
  );
}