Skip to content

Commit

Permalink
Update NanaZip.Specification.SevenZip.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Sep 29, 2024
1 parent 2fbcb71 commit afea3db
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions NanaZip.Specification/NanaZip.Specification.SevenZip.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ ICompressCoder : public IUnknown
{
public:

virtual HRESULT STDMETHODCALLTYPE Code(
_In_ ISequentialInStream* InStream,
_In_ ISequentialOutStream* OutStream,
_In_opt_ const PUINT64 InSize,
_In_opt_ const PUINT64 OutSize,
_In_opt_ ICompressProgressInfo* Progress) = 0;
virtual HRESULT STDMETHODCALLTYPE Code(
_In_ ISequentialInStream* InStream,
_In_ ISequentialOutStream* OutStream,
_In_opt_ const PUINT64 InSize,
_In_opt_ const PUINT64 OutSize,
_In_opt_ ICompressProgressInfo* Progress) = 0;
};

MIDL_INTERFACE("23170F69-40C1-278A-0000-000400200000")
Expand Down Expand Up @@ -102,6 +102,15 @@ ICompressWriteCoderProperties : public IUnknown
_In_ ISequentialOutStream* OutStream) = 0;
};

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

virtual HRESULT STDMETHODCALLTYPE GetInStreamProcessedSize(
_Out_ PUINT64 Value) = 0;
};

MIDL_INTERFACE("23170F69-40C1-278A-0000-000400250000")
ICompressSetCoderMt : public IUnknown
{
Expand All @@ -122,6 +131,15 @@ ICompressSetInStream : public IUnknown
virtual HRESULT STDMETHODCALLTYPE ReleaseInStream() = 0;
};

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

virtual HRESULT STDMETHODCALLTYPE SetOutStreamSize(
_In_ const PUINT64 OutSize) = 0;
};

EXTERN_C HRESULT WINAPI GetNumberOfMethods(
_Out_ PUINT32 NumMethods);

Expand Down

0 comments on commit afea3db

Please sign in to comment.