mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
435 B
C#
16 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using Microsoft.Win32;
|
|
|
|
namespace Cosmos.IL2CPU.CustomImplementation.Microsoft.Win32
|
|
{
|
|
[Plug(Target=typeof(RegistryKey))]
|
|
public static class RegistryKeyImpl
|
|
{
|
|
[PlugMethod(Signature="System_Void__Microsoft_Win32_RegistryKey__cctor__")]
|
|
public static void CCtor() { }
|
|
}
|
|
}
|