|
@@ -47,12 +47,16 @@ public class CommandLineStatus
|
|
|
public final boolean skinParameterSet;
|
|
|
public final String selectedSkinPath;
|
|
|
public final int uimodestate;
|
|
|
+ public final boolean streaming;
|
|
|
+ public final int streamport;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
public CommandLineStatus(boolean filemode, boolean statefile, boolean verboseMode, boolean useGUI,
|
|
|
String file_path, boolean burnDisc, boolean forcePregen, boolean featurePluginMode,
|
|
|
String featurePluginID,
|
|
|
String pluginParameter, boolean loadConfigMode, boolean menumode, boolean firstrunmode, boolean updateInit, boolean allowPluginLoad,boolean skinParameterSet,
|
|
|
- String selectedSkinPath,int uimodestate)
|
|
|
+ String selectedSkinPath,int uimodestate,boolean streaming,int streamport)
|
|
|
{
|
|
|
this.filemode = filemode;
|
|
|
this.statefile = statefile;
|
|
@@ -72,6 +76,8 @@ public class CommandLineStatus
|
|
|
this.skinParameterSet=skinParameterSet;
|
|
|
this.selectedSkinPath=selectedSkinPath;
|
|
|
this.uimodestate=uimodestate;
|
|
|
+ this.streaming=streaming;
|
|
|
+ this.streamport=streamport;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -79,7 +85,7 @@ public class CommandLineStatus
|
|
|
public CommandLineStatus changeUseGUI(boolean pGUI)
|
|
|
{
|
|
|
return new CommandLineStatus(filemode, statefile, verboseMode, pGUI, file_path, burnDisc, forcePregen, featurePluginMode,
|
|
|
- featurePluginID, pluginParameter, loadConfigMode, menumode, firstrunmode, updateInit, allowPluginLoad,skinParameterSet,selectedSkinPath,uimodestate);
|
|
|
+ featurePluginID, pluginParameter, loadConfigMode, menumode, firstrunmode, updateInit, allowPluginLoad,skinParameterSet,selectedSkinPath,uimodestate,streaming,streamport);
|
|
|
}
|
|
|
|
|
|
|