LookupPrivilegeValueA method

int LookupPrivilegeValueA(
  1. Pointer<Int8> lpSystemName,
  2. Pointer<Int8> lpName,
  3. Pointer<PLUID> lpLuid
)

Implementation

int LookupPrivilegeValueA(
  ffi.Pointer<ffi.Int8> lpSystemName,
  ffi.Pointer<ffi.Int8> lpName,
  ffi.Pointer<PLUID> lpLuid,
) {
  return (_LookupPrivilegeValueA ??= _dylib.lookupFunction<
      _c_LookupPrivilegeValueA,
      _dart_LookupPrivilegeValueA>('LookupPrivilegeValueA'))(
    lpSystemName,
    lpName,
    lpLuid,
  );
}