Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pavlov <ipavlov@users.sourceforge.net>2009-06-02 04:00:00 +0400
committerKornel LesiƄski <kornel@geekhood.net>2016-05-28 02:15:59 +0300
commit829409452d85cd6dd9dfc9151f109d6e13a2bb1c (patch)
treee0acaea47044d167f35fa197584dee1bde41c329 /CPP/7zip/UI/FileManager/RootFolder.h
parent8874e4fbc9faabdcff719b9b2ac8ebad4f282bbe (diff)
9.04 beta
Diffstat (limited to 'CPP/7zip/UI/FileManager/RootFolder.h')
-rwxr-xr-xCPP/7zip/UI/FileManager/RootFolder.h25
1 files changed, 9 insertions, 16 deletions
diff --git a/CPP/7zip/UI/FileManager/RootFolder.h b/CPP/7zip/UI/FileManager/RootFolder.h
index f17a0783..9f08e601 100755
--- a/CPP/7zip/UI/FileManager/RootFolder.h
+++ b/CPP/7zip/UI/FileManager/RootFolder.h
@@ -1,34 +1,27 @@
// RootFolder.h
-#ifndef __ROOTFOLDER_H
-#define __ROOTFOLDER_H
+#ifndef __ROOT_FOLDER_H
+#define __ROOT_FOLDER_H
#include "Common/MyString.h"
-#include "Windows/PropVariant.h"
+#include "IFolder.h"
-#include "FSFolder.h"
-
-const int kNumRootFolderItems = 3;
+const int kNumRootFolderItems = 4;
class CRootFolder:
public IFolderFolder,
public IFolderGetSystemIconIndex,
public CMyUnknownImp
{
-public:
- MY_UNKNOWN_IMP1(
- IFolderGetSystemIconIndex
- )
+ UString _names[kNumRootFolderItems];
+ int _iconIndices[kNumRootFolderItems];
+public:
+ MY_UNKNOWN_IMP1(IFolderGetSystemIconIndex)
INTERFACE_FolderFolder(;)
-
- STDMETHOD(GetSystemIconIndex)(UInt32 index, INT32 *iconIndex);
-
+ STDMETHOD(GetSystemIconIndex)(UInt32 index, Int32 *iconIndex);
void Init();
-private:
- UString _names[kNumRootFolderItems];
- int _iconIndices[kNumRootFolderItems];
};
#endif