is_elevated method

int is_elevated(
  1. Pointer<Bool> result
)

Determine this program is executed with admin.

Implementation

int is_elevated(ffi.Pointer<ffi.Bool> result) {
  return _is_elevated(result);
}