LookupPrivilegeValueW method

int LookupPrivilegeValueW(
  1. Pointer<Uint16> lpSystemName,
  2. Pointer<Uint16> lpName,
  3. Pointer<LUID> lpLuid
)

Implementation

int LookupPrivilegeValueW(
  ffi.Pointer<ffi.Uint16> lpSystemName,
  ffi.Pointer<ffi.Uint16> lpName,
  ffi.Pointer<LUID> lpLuid,
) {
  return _LookupPrivilegeValueW(
    lpSystemName,
    lpName,
    lpLuid,
  );
}