-
Notifications
You must be signed in to change notification settings - Fork 26
/
operating_system.go
39 lines (37 loc) · 1.58 KB
/
operating_system.go
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
package adcom1
// OperatingSystem represents device operating system.
type OperatingSystem int
// Options for device operating system.
//
// Values of 500+ hold vendor-specific codes.
const (
OSNotListed OperatingSystem = 0 // Other Not Listed
OS3DS OperatingSystem = 1 // 3DS System Software
OSAndroid OperatingSystem = 2 // Android
OSAppleTV OperatingSystem = 3 // Apple TV Software
OSAsha OperatingSystem = 4 // Asha
OSBada OperatingSystem = 5 // Bada
OSBlackBerry OperatingSystem = 6 // BlackBerry
OSBREW OperatingSystem = 7 // BREW
OSChromeOS OperatingSystem = 8 // ChromeOS
OSDarwin OperatingSystem = 9 // Darwin
OSFireOS OperatingSystem = 10 // FireOS
OSFirefoxOS OperatingSystem = 11 // FirefoxOS
OSHelenOS OperatingSystem = 12 // HelenOS
OSIOS OperatingSystem = 13 // iOS
OSLinux OperatingSystem = 14 // Linux
OSMacOS OperatingSystem = 15 // MacOS
OSMeeGo OperatingSystem = 16 // MeeGo
OSMorphOS OperatingSystem = 17 // MorphOS
OSNetBSD OperatingSystem = 18 // NetBSD
OSNucleusPLUS OperatingSystem = 19 // NucleusPLUS
OSPSVita OperatingSystem = 20 // PS Vita System Software
OSPS3 OperatingSystem = 21 // PS3 System Software
OSPS4 OperatingSystem = 22 // PS4 Software
OSPSP OperatingSystem = 23 // PSP System Software
OSSymbian OperatingSystem = 24 // Symbian
OSTizen OperatingSystem = 25 // Tizen
OSWatchOS OperatingSystem = 26 // WatchOS
OSWebOS OperatingSystem = 27 // WebOS
OSWindows OperatingSystem = 28 // Windows
)