Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OptionsDialog.h « Explorer « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: affa4329bf0cb125fd6fcf9f699fd8061aab221b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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