Example #1
0
        internal static int MemoryCallEntryPoint(MEMORYMODULE mod)
        {
            MEMORYMODULE module = mod;

            if (module == null || module.isDLL || module.exeEntry == null || !module.isRelocated)
            {
                return -1;
            }

            return module.exeEntry();
        }
Example #2
0
        public static int MemoryCallEntryPoint(MEMORYMODULE mod)
        {
            MEMORYMODULE module = mod;

            if (module == null || module.isDLL || module.exeEntry == null || !module.isRelocated)
            {
                return(-1);
            }

            return(module.exeEntry());
        }