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:
Diffstat (limited to 'CPP/7zip/UI/Explorer/OptionsDialog.h')
-rwxr-xr-xCPP/7zip/UI/Explorer/OptionsDialog.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/CPP/7zip/UI/Explorer/OptionsDialog.h b/CPP/7zip/UI/Explorer/OptionsDialog.h
new file mode 100755
index 00000000..7e85d357
--- /dev/null
+++ b/CPP/7zip/UI/Explorer/OptionsDialog.h
@@ -0,0 +1,23 @@
+// OptionsDialog.h
+
+#ifndef __SEVENZIP_OPTIONSDIALOG_H
+#define __SEVENZIP_OPTIONSDIALOG_H
+
+#include "../../FileManager/PluginInterface.h"
+#include "Common/MyCom.h"
+
+// {23170F69-40C1-278D-1000-000100020000}
+DEFINE_GUID(CLSID_CSevenZipOptions,
+ 0x23170F69, 0x40C1, 0x278D, 0x10, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00);
+
+class CSevenZipOptions:
+ public IPluginOptions,
+ public CMyUnknownImp
+{
+public:
+ MY_UNKNOWN_IMP
+ STDMETHOD(PluginOptions)(HWND hWnd, IPluginOptionsCallback *callback);
+ STDMETHOD(GetFileExtensions)(BSTR *extensions);
+};
+
+#endif