CSharpUtils.VirtualFileSystem.FileSystemProxyDokanOperations.GetDiskFreeSpace C# (CSharp) Метод

GetDiskFreeSpace() публичный Метод

public GetDiskFreeSpace ( ulong &freeBytesAvailable, ulong &totalBytes, ulong &totalFreeBytes, Dokan info ) : int
freeBytesAvailable ulong
totalBytes ulong
totalFreeBytes ulong
info Dokan
Результат int
		public int GetDiskFreeSpace(ref ulong freeBytesAvailable, ref ulong totalBytes, ref ulong totalFreeBytes, Dokan.DokanFileInfo info)
		{
			freeBytesAvailable = 512 * 1024 * 1024;
			totalBytes = 1024 * 1024 * 1024;
			totalFreeBytes = 512 * 1024 * 1024;
			return 0;
		}