#1170 Extract from Memory in Command Line 2

This commit is contained in:
honfika@gmail.com
2016-03-13 10:18:19 +01:00
parent 2d490115e7
commit 6bf39d05eb
7 changed files with 71 additions and 16 deletions

View File

@@ -29,12 +29,15 @@ public class SwfInMemory {
public int version;
public long address;
public long fileSize;
public com.jpexs.process.Process process;
public SwfInMemory(ReReadableInputStream is, int version, long fileSize, com.jpexs.process.Process process) {
public SwfInMemory(ReReadableInputStream is, long address, int version, long fileSize, com.jpexs.process.Process process) {
this.is = is;
this.address = address;
this.version = version;
this.fileSize = fileSize;
this.process = process;