mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 02:07:06 -06:00
4.53 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
33ccab7e72
commit
051769bbc5
49
CPP/7zip/UI/FileManager/FSDrives.h
Executable file
49
CPP/7zip/UI/FileManager/FSDrives.h
Executable file
@@ -0,0 +1,49 @@
|
||||
// FSDrives.h
|
||||
|
||||
#ifndef __FSDRIVES_H
|
||||
#define __FSDRIVES_H
|
||||
|
||||
#include "Common/MyString.h"
|
||||
#include "Common/Types.h"
|
||||
#include "Common/MyCom.h"
|
||||
#include "Windows/FileFind.h"
|
||||
#include "Windows/PropVariant.h"
|
||||
|
||||
#include "IFolder.h"
|
||||
|
||||
struct CDriveInfo
|
||||
{
|
||||
UString Name;
|
||||
UString FullSystemName;
|
||||
bool KnownSizes;
|
||||
UInt64 DriveSize;
|
||||
UInt64 FreeSpace;
|
||||
UInt64 ClusterSize;
|
||||
UString Type;
|
||||
UString VolumeName;
|
||||
UString FileSystemName;
|
||||
};
|
||||
|
||||
class CFSDrives:
|
||||
public IFolderFolder,
|
||||
public IFolderGetSystemIconIndex,
|
||||
public CMyUnknownImp
|
||||
{
|
||||
public:
|
||||
MY_UNKNOWN_IMP1(
|
||||
IFolderGetSystemIconIndex
|
||||
)
|
||||
|
||||
INTERFACE_FolderFolder(;)
|
||||
|
||||
STDMETHOD(GetSystemIconIndex)(UInt32 index, INT32 *iconIndex);
|
||||
|
||||
private:
|
||||
HRESULT BindToFolderSpec(const wchar_t *name, IFolderFolder **resultFolder);
|
||||
CObjectVector<CDriveInfo> _drives;
|
||||
bool _volumeMode;
|
||||
public:
|
||||
void Init() { _volumeMode = false;}
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user