System.SysUtils.TOSVersion.TArchitecture

From RAD Studio API Documentation
Revision as of 00:02, 17 October 2011 by PyBot (talk | contribs) (Scoping Libraries)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

TArchitecture = (arIntelX86, arIntelX64, arARM32, arARM64);

C++

enum DECLSPEC_DENUM TArchitecture : unsigned char { arIntelX86, arIntelX64, arARM32, arARM64 };

Properties

Type Visibility Source Unit Parent
enum public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TOSVersion

Description

Enumerates the processor architectures on which Delphi or C++Builder applications can run (Intel x86, Intel x64).

Use TOSVersion.Architecture to get the current processor architecture.

See Also