Home | History | Annotate | Download | only in Archive

Lines Matching defs:CHandler

173 class CHandler:

200 CHandler(bool lzma86) { _lzma86 = lzma86; }
209 STDMETHODIMP CHandler::GetArchiveProperty(PROPID propID, PROPVARIANT *value)
220 STDMETHODIMP CHandler::GetNumberOfItems(UInt32 *numItems)
256 STDMETHODIMP CHandler::GetProperty(UInt32 /* index */, PROPID propID, PROPVARIANT *value)
280 STDMETHODIMP CHandler::Open(IInStream *inStream, const UInt64 *, IArchiveOpenCallback *)
305 STDMETHODIMP CHandler::OpenSeq(ISequentialInStream *stream)
312 STDMETHODIMP CHandler::Close()
321 STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems,
411 static IInArchive *CreateArc() { return new CHandler(false); }
412 static IInArchive *CreateArc86() { return new CHandler(true); }