mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
34 lines
555 B
C++
Executable File
34 lines
555 B
C++
Executable File
// RootFolder.h
|
|
|
|
#ifndef __ROOT_FOLDER_H
|
|
#define __ROOT_FOLDER_H
|
|
|
|
#include "Common/MyString.h"
|
|
|
|
#include "IFolder.h"
|
|
|
|
const int kNumRootFolderItems =
|
|
#ifdef UNDER_CE
|
|
1
|
|
#else
|
|
4
|
|
#endif
|
|
;
|
|
|
|
class CRootFolder:
|
|
public IFolderFolder,
|
|
public IFolderGetSystemIconIndex,
|
|
public CMyUnknownImp
|
|
{
|
|
UString _names[kNumRootFolderItems];
|
|
int _iconIndices[kNumRootFolderItems];
|
|
|
|
public:
|
|
MY_UNKNOWN_IMP1(IFolderGetSystemIconIndex)
|
|
INTERFACE_FolderFolder(;)
|
|
STDMETHOD(GetSystemIconIndex)(UInt32 index, Int32 *iconIndex);
|
|
void Init();
|
|
};
|
|
|
|
#endif
|