aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-29 14:13:20 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-29 14:13:20 -0500
commitc30b82ab44401cf86f6723834d8d5b1ea8aac66c (patch)
treedb57790754327657d88dfac23884842bf56ed531 /MediaBrowser.Model/System
parentc80ac9b823d4f128c232d4a69e051af1fd4ea3f4 (diff)
update recording encoder
Diffstat (limited to 'MediaBrowser.Model/System')
-rw-r--r--MediaBrowser.Model/System/IEnvironmentInfo.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/MediaBrowser.Model/System/IEnvironmentInfo.cs b/MediaBrowser.Model/System/IEnvironmentInfo.cs
index f9795a568..abe39fa03 100644
--- a/MediaBrowser.Model/System/IEnvironmentInfo.cs
+++ b/MediaBrowser.Model/System/IEnvironmentInfo.cs
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
+
namespace MediaBrowser.Model.System
{
public interface IEnvironmentInfo
@@ -13,6 +8,7 @@ namespace MediaBrowser.Model.System
string OperatingSystemVersion { get; }
Architecture SystemArchitecture { get; }
string GetEnvironmentVariable(string name);
+ void SetProcessEnvironmentVariable(string name, string value);
string GetUserId();
string StackTrace { get; }
}