33 lines
815 B
C#
33 lines
815 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ExtractResFile.AsposeHook
|
|
{
|
|
internal class MethodMeta
|
|
{
|
|
public MethodBase Method { get; set; }
|
|
|
|
public IntPtr MethodDescAddress { get; set; }
|
|
|
|
public IntPtr MethodDescValue { get; set; }
|
|
|
|
public IntPtr FunctionPointerBeforePrepare { get; set; }
|
|
|
|
public IntPtr Next1IntptrBeforePrepare { get; set; }
|
|
|
|
public IntPtr Next2IntptrBeforePrepare { get; set; }
|
|
|
|
public IntPtr FunctionPointerAfterPrepare { get; set; }
|
|
|
|
public IntPtr Next1IntptrAfterPrepare { get; set; }
|
|
|
|
public IntPtr Next2IntptrAfterPrepare { get; set; }
|
|
|
|
public IntPtr FinalMethodAddress { get; set; }
|
|
}
|
|
}
|