reactos/dll/shellext/zipfldr/CZipCreator.hpp
Katayama Hirofumi MZ f1bc04d7e6
[SHELL32][ZIPFLDR] Implement SendTo ZIP folder (#2118)
Follow-up of #2114.
- s/Creater/Creator/
- Add an empty file in the SendTo folder.
- Trick.
CORE-16495
2019-12-02 02:26:34 +09:00

33 lines
691 B
C++

/*
* PROJECT: ReactOS Zip Shell Extension
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Create a zip file
* COPYRIGHT: Copyright 2019 Mark Jansen (mark.jansen@reactos.org)
* Copyright 2019 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
*/
#ifndef CZIPCREATOR_HPP_
#define CZIPCREATOR_HPP_
struct CZipCreatorImpl;
class CZipCreator
{
public:
struct CZipCreatorImpl *m_pimpl;
virtual ~CZipCreator();
static CZipCreator* DoCreate()
{
return new CZipCreator();
}
virtual void DoAddItem(LPCWSTR pszFile);
static BOOL runThread(CZipCreator* pCreator);
protected:
CZipCreator();
};
#endif