Exemplo n.º 1
0
 public static extern bool VirtualProtect(
     [In] IntPtr lpAddress,
     [In] IntPtr dwSize,
     [In] VirtualAllocProtection flNewProtect,
     [Out] out VirtualAllocProtection lpflOldProtect);
Exemplo n.º 2
0
 public static partial bool VirtualProtect(
     IntPtr lpAddress,
     IntPtr dwSize,
     VirtualAllocProtection flNewProtect,
     out VirtualAllocProtection lpflOldProtect);
Exemplo n.º 3
0
 public static extern VirtualAllocHandle VirtualAlloc(
     [In] IntPtr lpAddress,
     [In] IntPtr dwSize,
     [In] VirtualAllocAllocationType flAllocationType,
     [In] VirtualAllocProtection flProtect);
Exemplo n.º 4
0
 public static partial VirtualAllocHandle VirtualAlloc(
     IntPtr lpAddress,
     IntPtr dwSize,
     VirtualAllocAllocationType flAllocationType,
     VirtualAllocProtection flProtect);