BananaHook.Infrastructure.PInvoke.Win32Implementation.IMemoryProtection C# (CSharp) Method

IMemoryProtection() private method

private IMemoryProtection ( IntPtr lpAddress, IntPtr dwSize, MemoryProtectionConstraints flNewProtect, MemoryProtectionConstraints &pflOldProtect ) : bool
lpAddress System.IntPtr
dwSize System.IntPtr
flNewProtect MemoryProtectionConstraints
pflOldProtect MemoryProtectionConstraints
return bool
        bool IMemoryProtection.VirtualProtect(IntPtr lpAddress, IntPtr dwSize, MemoryProtectionConstraints flNewProtect,
            out MemoryProtectionConstraints pflOldProtect)
        {
            return VirtualProtect(lpAddress, dwSize, flNewProtect, out pflOldProtect);
        }