aspclassic-core/AspClassic.Scripting/Utils/NativeMethods.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

10 lines
316 B
C#

using System.Runtime.InteropServices;
namespace AspClassic.Scripting.Utils;
internal static class NativeMethods
{
[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool SetEnvironmentVariable(string name, string value);
}