obfuz/Editor/ObfusPasses/CallObfus/IProxyCallPolicy.cs

17 lines
367 B
C#
Raw Normal View History

2025-04-24 11:58:22 +08:00
using dnlib.DotNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-05-04 19:55:10 +08:00
namespace Obfuz.ObfusPasses.CallObfus
2025-04-24 11:58:22 +08:00
{
2025-04-29 10:04:44 +08:00
public interface IProxyCallPolicy
2025-04-24 11:58:22 +08:00
{
bool NeedDynamicProxyCallInMethod(MethodDef method);
bool NeedDynamicProxyCalledMethod(IMethod method, bool callVir);
}
}