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