mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 14:07:11 -06:00
Initialer Commit
This commit is contained in:
32
CPP/7zip/UI/FileManager/RegistryPlugins.h
Normal file
32
CPP/7zip/UI/FileManager/RegistryPlugins.h
Normal file
@@ -0,0 +1,32 @@
|
||||
// RegistryPlugins.h
|
||||
|
||||
#ifndef __REGISTRY_PLUGINS_H
|
||||
#define __REGISTRY_PLUGINS_H
|
||||
|
||||
#include "../../../Common/MyString.h"
|
||||
|
||||
enum EPluginType
|
||||
{
|
||||
kPluginTypeFF = 0
|
||||
};
|
||||
|
||||
struct CPluginInfo
|
||||
{
|
||||
FString FilePath;
|
||||
EPluginType Type;
|
||||
UString Name;
|
||||
CLSID ClassID;
|
||||
CLSID OptionsClassID;
|
||||
bool ClassIDDefined;
|
||||
bool OptionsClassIDDefined;
|
||||
|
||||
// CSysString Extension;
|
||||
// CSysString AddExtension;
|
||||
// bool UpdateEnabled;
|
||||
// bool KeepName;
|
||||
};
|
||||
|
||||
void ReadPluginInfoList(CObjectVector<CPluginInfo> &plugins);
|
||||
void ReadFileFolderPluginInfoList(CObjectVector<CPluginInfo> &plugins);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user