Windows Delphi/꿀팁 윈도우가 64비트인지 아닌지 확인하기 - 2 uses System.SysUtils; function isWindows64: Boolean; begin Result := TOSVersion.Architecture in [arIntelX64, arARM64]; end; 2018.11.15 - [Delphi/꿀팁] - 윈도우가 64비트인지 아닌지 확인하기 - 1 Delphi/꿀팁 윈도우가 64비트인지 아닌지 확인하기 - 1 function isWindows64: Boolean; type TIsWow64Process = function(Handle: Windows.THandle; var Res: Windows.BOOL): Windows.BOOL; stdcall; var IsWow64Result: Windows.BOOL; IsWow64Process: TIsWow64Process; begin IsWow64Process := Windows.GetProcAddress(Windows.GetModuleHandle('kernel32'), 'IsWow64Process'); if Assigned(IsWow64Process) then begin if not IsWow64Process(Windows.GetCurrentProcess, IsWow6.. 이전 1 다음