aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/EnvironmentInfo
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 /Emby.Common.Implementations/EnvironmentInfo
parentc80ac9b823d4f128c232d4a69e051af1fd4ea3f4 (diff)
update recording encoder
Diffstat (limited to 'Emby.Common.Implementations/EnvironmentInfo')
-rw-r--r--Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs b/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs
index ebd596dc4..6cc4626ea 100644
--- a/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs
+++ b/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs
@@ -110,5 +110,10 @@ namespace Emby.Common.Implementations.EnvironmentInfo
{
get { return Environment.StackTrace; }
}
+
+ public void SetProcessEnvironmentVariable(string name, string value)
+ {
+ Environment.SetEnvironmentVariable(name, value);
+ }
}
}