Line | |
---|
1 | package org.j7zip.SevenZip;
|
---|
2 |
|
---|
3 | import org.j7zip.Common.RecordVector;
|
---|
4 |
|
---|
5 | public interface ICompressCoder2 {
|
---|
6 | public int Code(
|
---|
7 | RecordVector<java.io.InputStream> inStreams,
|
---|
8 | Object useless1, // const UInt64 ** /* inSizes */,
|
---|
9 | int numInStreams,
|
---|
10 | RecordVector<java.io.OutputStream> outStreams,
|
---|
11 | Object useless2, // const UInt64 ** /* outSizes */,
|
---|
12 | int numOutStreams,
|
---|
13 | ICompressProgressInfo progress) throws java.io.IOException;
|
---|
14 |
|
---|
15 | public void close() throws java.io.IOException ; // destructor
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.