summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/unix/CPP/7zip/UI/Common/HandlerLoader.h
blob: 4c7e1a8f4933477c7db595f398d189a535c1f657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// HandlerLoader.h

#ifndef __HANDLERLOADER_H
#define __HANDLERLOADER_H

#include "../../ICoder.h"
#include "Windows/DLL.h"

typedef UInt32 (WINAPI * CreateObjectFunc)(
    const GUID *clsID,
    const GUID *interfaceID,
    void **outObject);

class CHandlerLoader: public NWindows::NDLL::CLibrary
{
public:
  HRESULT CreateHandler(LPCWSTR filepath, REFGUID clsID,
      void **archive, bool outHandler)
  {
    if (!Load(filepath))
      return GetLastError();
    CreateObjectFunc createObject = (CreateObjectFunc)
        GetProcAddress("CreateObject");
    if (createObject == NULL)
    {
      HRESULT res = ::GetLastError();
      Free();
      return res;
    }
    HRESULT res = createObject(&clsID,
        outHandler ? &IID_IOutArchive : &IID_IInArchive, (void **)archive);
    if (res != 0)
      Free();
    return res;
  }
};

#endif