mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
Some stupid warning removed for now CultureInfo Plugs merged Added VHD option (still disabled) Some temporary plugs
15 lines
No EOL
383 B
C#
15 lines
No EOL
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
namespace Indy.IL2CPU.CustomImplementation
|
|
{
|
|
|
|
[Plug(Target = typeof(Guid))]
|
|
public static class GuidImpl
|
|
{
|
|
[PlugMethod(Signature="System_Void__System_Guid__ctor_System_String_")]
|
|
public static void ctor(String aStr){ }
|
|
}
|
|
} |