Esempio n. 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));
        }
Esempio n. 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));
        }
Esempio n. 3
0
        public static bool Execute(Process process, IntPtr address, IntPtr param = default(IntPtr))
        {
            RemoteFunction fn = new RemoteFunction(process, address);

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

            return(remoteFn.Execute(param));
        }