mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
33 lines
572 B
C
Executable File
33 lines
572 B
C
Executable File
// RegistryPlugins.h
|
|
|
|
#ifndef __REGISTRYPLUGINS_H
|
|
#define __REGISTRYPLUGINS_H
|
|
|
|
#include "Common/MyString.h"
|
|
|
|
enum EPluginType
|
|
{
|
|
kPluginTypeFF = 0
|
|
};
|
|
|
|
struct CPluginInfo
|
|
{
|
|
UString 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
|