~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to CPP/7zip/Archive/Tar/TarIn.h

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
namespace NArchive {
12
12
namespace NTar {
13
13
  
14
 
class CInArchive
15
 
{
16
 
  CMyComPtr<IInStream> m_Stream;
17
 
  UInt64 m_Position;
18
 
  
19
 
  HRESULT ReadBytes(void *data, size_t size, size_t &processedSize);
20
 
public:
21
 
  HRESULT Open(IInStream *inStream);
22
 
  HRESULT GetNextItemReal(bool &filled, CItemEx &itemInfo);
23
 
  HRESULT GetNextItem(bool &filled, CItemEx &itemInfo);
24
 
  HRESULT Skeep(UInt64 numBytes);
25
 
  HRESULT SkeepDataRecords(UInt64 dataSize);
26
 
};
27
 
  
 
14
HRESULT ReadItem(ISequentialInStream *stream, bool &filled, CItemEx &itemInfo);
 
15
 
28
16
}}
29
17
  
30
18
#endif