obfuz/Editor/ObfusPass/CallObfus/IProxyCallObfuscator.cs

18 lines
401 B
C#
Raw Normal View History

2025-04-24 11:58:22 +08:00
using dnlib.DotNet.Emit;
using dnlib.DotNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz.DynamicProxy
{
2025-04-29 10:04:44 +08:00
public interface IProxyCallObfuscator
2025-04-24 11:58:22 +08:00
{
void Obfuscate(MethodDef callingMethod, IMethod calledMethod, bool callVir, List<Instruction> obfuscatedInstructions);
2025-04-28 11:37:48 +08:00
void Done();
2025-04-24 11:58:22 +08:00
}
}