Cosmos/source/Indy.IL2CPU.IL/CustomImplementations/System/EnvironmentImpl.cs
mterwoord_cp 37c9966421
2008-05-19 09:41:18 +00:00

15 lines
430 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; }
}
}