GrayStorm.methodInvoking.fireMethod C# (CSharp) Method

fireMethod() public static method

public static fireMethod ( IntPtr methodAddress, int whichCall ) : void
methodAddress System.IntPtr
whichCall int
return void
        public static void fireMethod(IntPtr methodAddress, int whichCall)
        {
            if (whichCall == 0)
                assemblyHelpers.callATrueIntPtr(methodAddress, assemblyHelpers.call_a_fun_ptr);
            else if (whichCall == 1)
                assemblyHelpers.callATrueIntPtr(methodAddress, assemblyHelpers.call_a_fun_ptr_INT3);
        }