Cosmos/source/Indy.IL2CPU.IL.Win32/Win32OpCodeMap.cs

13 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.IL.X86;
namespace Indy.IL2CPU.IL.Win32 {
public class Win32OpCodeMap: X86OpCodeMap {
protected override Type GetCustomMethodImplementationOp() {
return typeof(Win32CustomMethodImplementationOp);
}
}
}