mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 12:11:38 -06:00
3.13
This commit is contained in:
35
7zip/FileManager/RegistryPlugins.h
Executable file
35
7zip/FileManager/RegistryPlugins.h
Executable file
@@ -0,0 +1,35 @@
|
||||
// RegistryPlugins.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __REGISTRYPLUGINS_H
|
||||
#define __REGISTRYPLUGINS_H
|
||||
|
||||
#include "Common/Vector.h"
|
||||
#include "Common/String.h"
|
||||
|
||||
enum EPluginType
|
||||
{
|
||||
kPluginTypeFF = 0
|
||||
};
|
||||
|
||||
struct CPluginInfo
|
||||
{
|
||||
CSysString FilePath;
|
||||
EPluginType Type;
|
||||
UString Name;
|
||||
CLSID ClassID;
|
||||
CLSID OptionsClassID;
|
||||
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