diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-29 14:13:20 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-29 14:13:20 -0500 |
| commit | c30b82ab44401cf86f6723834d8d5b1ea8aac66c (patch) | |
| tree | db57790754327657d88dfac23884842bf56ed531 /Emby.Common.Implementations/EnvironmentInfo | |
| parent | c80ac9b823d4f128c232d4a69e051af1fd4ea3f4 (diff) | |
update recording encoder
Diffstat (limited to 'Emby.Common.Implementations/EnvironmentInfo')
| -rw-r--r-- | Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs | 5 |
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); + } } } |
