[ZIPFLDR] Initial implementation.
[reactos.git] / dll / shellext / zipfldr / IZip.hpp
1 /*
2 * PROJECT: ReactOS Zip Shell Extension
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: IZip
5 * COPYRIGHT: Copyright 2017 Mark Jansen (mark.jansen@reactos.org)
6 */
7
8 struct IZip : public IUnknown
9 {
10 virtual STDMETHODIMP_(unzFile) getZip() PURE;
11 };
12