xtd 0.2.0
Loading...
Searching...
No Matches
platform_id.h
Go to the documentation of this file.
1
4#pragma once
5#include "enum.h"
6#undef unix
7#undef linux
8
10namespace xtd {
18 enum class platform_id {
20 unknown = -1,
22 win32s,
28 win_ce,
30 unix,
32 xbox,
34 macos,
36 ios,
38 android,
40 linux,
42 tvos,
44 watchos,
48 mingw,
50 msys,
52 posix,
54 other = 32767,
55 };
56}
57
59template<> struct xtd::enum_register<xtd::platform_id> {
61};
Contains enum_ and enum_ut_ keywords.
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
platform_id
Identifies the operating system, or platform, supported by an assembly.
Definition platform_id.h:18
@ unknown
The processor architecture is unknown.
@ mingw
The operating system is MINGW.
@ win_ce
The operating system is Windows CE.
@ tvos
The operating system is tvOS Apple.
@ win32s
The operating system is Win32s. Win32s is a layer that runs on 16-bit versions of Windows to provide ...
@ xbox
The development platform is Xbox 360.
@ win32_nt
The operating system is Windows NT or later.
@ macos
The operating system is Macintosh.
@ unix
The operating system is Unix.
@ free_bsd
The operating system is FreeBSD.
@ other
The operating system is other.
@ posix
The operating system is Posix.
@ ios
The operating system is iOS Apple.
@ unknown
The operating system is unknown.
@ android
The operating system is Android.
@ msys
The operating system is MSYS.
@ linux
The operating system is Linux.
@ watchos
The operating system is watchOS Apple.
@ win32_windows
The operating system is Windows 95 or Windows 98.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36