mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
13 lines
331 B
C#
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);
|
|
}
|
|
}
|
|
}
|