■ VirtualAllocEx API 함수를 선언하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
using System; using System.Runtime.InteropServices; #region 가상 메모리 할당하기 (확장) - VirtualAllocEx(processHandle, addressHandle, size, allocationType, protect) /// <summary> /// 가상 메모리 할당하기 (확장) /// </summary> /// <param name="processHandle">프로세스 핸들</param> /// <param name="addressHandle">주소 핸들</param> /// <param name="size">크기</param> /// <param name="allocationType">할당 타입</param> /// <param name="protect">보호 여부</param> /// <returns>가상 메모리 핸들</returns> [DllImport("kernel32", SetLastError = true, ExactSpelling = true)] private static extern IntPtr VirtualAllocEx ( IntPtr processHandle, IntPtr addressHandle, uint size, uint allocationType, uint protect ); #endregion |