mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
4.53 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
33ccab7e72
commit
051769bbc5
32
CPP/7zip/UI/FileManager/RootFolder.h
Executable file
32
CPP/7zip/UI/FileManager/RootFolder.h
Executable file
@@ -0,0 +1,32 @@
|
||||
// RootFolder.h
|
||||
|
||||
#ifndef __ROOTFOLDER_H
|
||||
#define __ROOTFOLDER_H
|
||||
|
||||
#include "Common/MyString.h"
|
||||
|
||||
#include "Windows/PropVariant.h"
|
||||
|
||||
#include "FSFolder.h"
|
||||
|
||||
class CRootFolder:
|
||||
public IFolderFolder,
|
||||
public IFolderGetSystemIconIndex,
|
||||
public CMyUnknownImp
|
||||
{
|
||||
public:
|
||||
MY_UNKNOWN_IMP1(
|
||||
IFolderGetSystemIconIndex
|
||||
)
|
||||
|
||||
INTERFACE_FolderFolder(;)
|
||||
|
||||
STDMETHOD(GetSystemIconIndex)(UInt32 index, INT32 *iconIndex);
|
||||
|
||||
void Init();
|
||||
private:
|
||||
UString _computerName;
|
||||
UString _networkName;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user