AgaHackTools.Main.Native.NativeHelper.GetProcAddress C# (CSharp) Метод

GetProcAddress() публичный статический Метод

Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
public static GetProcAddress ( ProcessModule module, string functionName ) : IntPtr
module System.Diagnostics.ProcessModule The object corresponding to the module.
functionName string The function or variable name, or the function's ordinal value.
Результат System.IntPtr
        public static IntPtr GetProcAddress(ProcessModule module, string functionName)
        {
            return GetProcAddress(module.ModuleName, functionName);
        }

Same methods

NativeHelper::GetProcAddress ( string moduleName, string functionName ) : IntPtr