■ WIN32 API 함수를 사용해 64비트 운영 체제 여부를 구하는 방법을 보여준다.
▶ Program.cs
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
using System.Runtime.InteropServices; namespace TestProject; /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Import ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 현재 프로세스 구하기 - GetCurrentProcess() /// <summary> /// 현재 프로세스 구하기 /// </summary> /// <returns>현재 프로세스 핸들</returns> [DllImport("kernel32")] private static extern IntPtr GetCurrentProcess(); #endregion #region 모듈 핸들 구하기 - GetModuleHandle(moduleName) /// <summary> /// 모듈 핸들 구하기 /// </summary> /// <param name="moduleName">모듈명</param> /// <returns>모듈 핸들</returns> [DllImport("kernel32", CharSet = CharSet.Auto)] private static extern IntPtr GetModuleHandle(string moduleName); #endregion #region 프로시저 주소 구하기 - GetProcAddress(moduleHandle, procedureName) /// <summary> /// 프로시저 주소 구하기 /// </summary> /// <param name="moduleHandle">모듈 핸들</param> /// <param name="procedureName">프로시저명</param> /// <returns>프로시저 핸들</returns> [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr GetProcAddress(IntPtr moduleHandle, [MarshalAs(UnmanagedType.LPStr)] string procedureName); #endregion #region WOW 64비트 프로세스 여부 구하기 - IsWow64Process(processHandle, isWOW64Process) /// <summary> /// WOW 64비트 프로세스 여부 구하기 /// </summary> /// <param name="processHandle">프로세스 핸들</param> /// <param name="isWOW64Process">WOW 64비트 프로세스 여부</param> /// <returns>처리 결과</returns> [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool IsWow64Process(IntPtr processHandle, out bool isWOW64BitProcess); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region WIN32 메소드 존재 여부 구하기 - ExistWIN32Method(moduleName, methodName) /// <summary> /// WIN32 메소드 존재 여부 구하기 /// </summary> /// <param name="moduleName">모듈명</param> /// <param name="methodName">메소드명</param> /// <returns>WIN32 메소드 존재 여부</returns> private static bool ExistWIN32Method(string moduleName, string methodName) { IntPtr moduleHandle = GetModuleHandle(moduleName); if(moduleHandle == IntPtr.Zero) { return false; } return (GetProcAddress(moduleHandle, methodName) != IntPtr.Zero); } #endregion #region 64비트 운영 체제 여부 구하기 - Is64BitOperatingSystem() /// <summary> /// 64비트 운영 체제 여부 구하기 /// </summary> /// <returns>64비트 운영 체제 여부</returns> private static bool Is64BitOperatingSystem() { if(IntPtr.Size == 8) { return true; } else { bool flag; return ((ExistWIN32Method("kernel32", "IsWow64Process") && IsWow64Process(GetCurrentProcess(), out flag)) && flag); } } #endregion #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { Console.WriteLine($"64비트 운영 체제 여부 : {Is64BitOperatingSystem()}"); } #endregion } |