mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
c7e6a9d04b
Icon by Jared Smudde CORE-7684
13 lines
290 B
C++
13 lines
290 B
C++
/*
|
|
* PROJECT: ReactOS Zip Shell Extension
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: IZip
|
|
* COPYRIGHT: Copyright 2017 Mark Jansen (mark.jansen@reactos.org)
|
|
*/
|
|
|
|
struct IZip : public IUnknown
|
|
{
|
|
virtual STDMETHODIMP_(unzFile) getZip() PURE;
|
|
};
|
|
|