mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 12:11:39 -06:00
3.13
This commit is contained in:
28
Windows/FileSystem.h
Executable file
28
Windows/FileSystem.h
Executable file
@@ -0,0 +1,28 @@
|
||||
// Windows/FileSystem.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __WINDOWS_FILESYSTEM_H
|
||||
#define __WINDOWS_FILESYSTEM_H
|
||||
|
||||
#include "../Common/String.h"
|
||||
|
||||
namespace NWindows {
|
||||
namespace NFile {
|
||||
namespace NSystem {
|
||||
|
||||
bool MyGetVolumeInformation(
|
||||
LPCTSTR rootPathName,
|
||||
CSysString &volumeName,
|
||||
LPDWORD volumeSerialNumber,
|
||||
LPDWORD maximumComponentLength,
|
||||
LPDWORD fileSystemFlags,
|
||||
CSysString &fileSystemName);
|
||||
|
||||
bool MyGetDiskFreeSpace(LPCTSTR rootPathName,
|
||||
UINT64 &clusterSize, UINT64 &totalSize, UINT64 &freeSize);
|
||||
|
||||
}}}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user