Cosmos/source/Indy.IL2CPU/IL/CustomImplementations/System/EnvironmentImpl.cs
kudzu_cp 3e05e23892
2008-09-21 23:15:22 +00:00

17 lines
434 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.IL.CustomImplementations.System
{
[Plug(Target=typeof(Environment))]
public static class EnvironmentImpl
{
[PlugMethod(Signature = "System_Environment_OSName__System_Environment_get_OSInfo__")]
public static int get_OSName() { return 0x82; }
}
}