76 lines
2.1 KiB
C++
76 lines
2.1 KiB
C++
// Zip.h : Declaration of the CZip
|
|
|
|
#pragma once
|
|
#include "resource.h" // main symbols
|
|
|
|
#include "SLNKDWF.h"
|
|
|
|
#if defined(_WIN32_WCE) && !defined(_CE_DCOM) && !defined(_CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA)
|
|
#error "Single-threaded COM objects are not properly supported on Windows CE platform, such as the Windows Mobile platforms that do not include full DCOM support. Define _CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA to force ATL to support creating single-thread COM object's and allow use of it's single-threaded COM object implementations. The threading model in your rgs file was set to 'Free' as that is the only threading model supported in non DCOM Windows CE platforms."
|
|
#endif
|
|
|
|
|
|
|
|
// CZip
|
|
|
|
class ATL_NO_VTABLE CZip :
|
|
public CComObjectRootEx<CComSingleThreadModel>,
|
|
public CComCoClass<CZip, &CLSID_Zip>,
|
|
public ISupportErrorInfo,
|
|
public IDispatchImpl<IZip, &IID_IZip, &LIBID_SLNKDWFLib, /*wMajor =*/ 1, /*wMinor =*/ 0>
|
|
{
|
|
public:
|
|
CZip(): m_pZipFile(NULL)
|
|
{
|
|
}
|
|
~CZip()
|
|
{
|
|
if (m_pZipFile)
|
|
delete m_pZipFile;
|
|
}
|
|
|
|
DECLARE_REGISTRY_RESOURCEID(IDR_ZIP)
|
|
|
|
|
|
BEGIN_COM_MAP(CZip)
|
|
COM_INTERFACE_ENTRY(IZip)
|
|
COM_INTERFACE_ENTRY(IDispatch)
|
|
COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
|
END_COM_MAP()
|
|
|
|
// ISupportsErrorInfo
|
|
STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
|
|
|
|
|
|
DECLARE_PROTECT_FINAL_CONSTRUCT()
|
|
|
|
HRESULT FinalConstruct()
|
|
{
|
|
return S_OK;
|
|
}
|
|
|
|
void FinalRelease()
|
|
{
|
|
}
|
|
|
|
public:
|
|
|
|
STDMETHOD(Open)(BSTR ZipPath);
|
|
|
|
private:
|
|
|
|
DWFCore::DWFZipFileDescriptor *m_pZipFile; // Als naar file schrijven
|
|
|
|
public:
|
|
STDMETHOD(New)(BSTR ZipPath);
|
|
STDMETHOD(UnzipToStream)(VARIANT pVal, BSTR filepath, BSTR Password/*L""*/);
|
|
STDMETHOD(DecryptToStream)(VARIANT pVal, BSTR filepath);
|
|
STDMETHOD(ZipFromString)(BSTR filepath, BSTR data, BSTR Password);
|
|
STDMETHOD(ZipFromStream)(BSTR filepath, VARIANT pStream, BSTR Password);
|
|
STDMETHOD(EncryptFromString)(BSTR filepath, BSTR data);
|
|
STDMETHOD(Close)(void);
|
|
STDMETHOD(FileToHexStream)(BSTR filepath, VARIANT pStream);
|
|
};
|
|
|
|
OBJECT_ENTRY_AUTO(__uuidof(Zip), CZip)
|