xref: /reactos/dll/shellext/zipfldr/IZip.hpp (revision 40462c92)
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 
13