示例#1
0
        public static bool Execute <T>(ProcessMemory memory, IntPtr address, T param) where T : struct
        {
            RemoteFunction fn = new RemoteFunction(memory.Process, address);

            return(fn.Execute(memory, param));
        }
示例#2
0
        public bool Execute <T>(IntPtr fn, T param) where T : struct
        {
            RemoteFunction remoteFn = new RemoteFunction(process, fn);

            return(remoteFn.Execute <T>(this, param));
        }
示例#3
0
        public static bool Execute(Process process, IntPtr address, IntPtr param = default(IntPtr))
        {
            RemoteFunction fn = new RemoteFunction(process, address);

            return(fn.Execute(param));
        }
示例#4
0
        public bool Execute(IntPtr fn, IntPtr param = default(IntPtr))
        {
            RemoteFunction remoteFn = new RemoteFunction(process, fn);

            return(remoteFn.Execute(param));
        }