GetSystemRegistryQuota method

int GetSystemRegistryQuota(
  1. Pointer<Uint64> pdwQuotaAllowed,
  2. Pointer<Uint64> pdwQuotaUsed
)

Implementation

int GetSystemRegistryQuota(
  ffi.Pointer<ffi.Uint64> pdwQuotaAllowed,
  ffi.Pointer<ffi.Uint64> pdwQuotaUsed,
) {
  return (_GetSystemRegistryQuota ??= _dylib.lookupFunction<
      _c_GetSystemRegistryQuota,
      _dart_GetSystemRegistryQuota>('GetSystemRegistryQuota'))(
    pdwQuotaAllowed,
    pdwQuotaUsed,
  );
}