Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.04 KB

GetSystemRegistryQuota.md

File metadata and controls

44 lines (30 loc) · 1.04 KB

Home

Function name : GetSystemRegistryQuota

Group: System Information - Library: kernel32


Retrieves the current size of the registry and the maximum size that the registry is allowed to attain on the system.


Declaration:

BOOL WINAPI GetSystemRegistryQuota(
  __out_opt  PDWORD pdwQuotaAllowed,
  __out_opt  PDWORD pdwQuotaUsed
);  

FoxPro declaration:

DECLARE INTEGER GetSystemRegistryQuota IN kernel32;
	LONG @pdwQuotaAllowed,;
	LONG @pdwQuotaUsed
  

Parameters:

pdwQuotaAllowed [out, optional] A pointer to a variable that receives the maximum size that the registry is allowed to attain on this system, in bytes.

pdwQuotaUsed [out, optional] A pointer to a variable that receives the current size of the registry, in bytes.


Return value:

If the function succeeds, the return value is nonzero.