System.SysUtils.Win32Platform
Delphi
Win32Platform: Integer = 0;
C++
extern DELPHI_PACKAGE int Win32Platform;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
variable | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Specifies the Windows Operating System platform identifier.
Win32Platform is used to identify the type of Win32 platform the system is running on. The type can take one of the following values.
Value | Meaning |
---|---|
VER_PLATFORM_WIN32s = 0 |
System is Win32s. |
VER_PLATFORM_WIN32_WINDOWS = 1 |
System is Windows 95. |
VER_PLATFORM_WIN32_NT = 2 |
System is Windows NT. This includes Windows XP and Vista. |
Note: Win32Platform is available on Windows only.