Skip to content

Commit

Permalink
Add ICompressSetFinishMode definition to NanaZip.Specification.SevenZip.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Nov 1, 2024
1 parent afea3db commit eb7eafb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions NanaZip.Specification/NanaZip.Specification.SevenZip.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,21 @@ ICompressSetCoderMt : public IUnknown
_In_ UINT32 NumThreads) = 0;
};

typedef enum _SEVENZIP_FINISH_MODE_TYPE
{
SevenZipFinishModePartialDecoding = 0,
SevenZipFinishModeFullDecoding = 1,
} SEVENZIP_FINISH_MODE_TYPE, *PSEVENZIP_FINISH_MODE_TYPE;

MIDL_INTERFACE("23170F69-40C1-278A-0000-000400260000")
ICompressSetFinishMode : public IUnknown
{
public:

virtual HRESULT STDMETHODCALLTYPE SetFinishMode(
_In_ UINT32 FinishMode) = 0;
};

MIDL_INTERFACE("23170F69-40C1-278A-0000-000400310000")
ICompressSetInStream : public IUnknown
{
Expand Down

0 comments on commit eb7eafb

Please sign in to comment.