WebArgTLVType.cs
1 namespace Ryujinx.HLE.HOS.Applets.Browser 2 { 3 enum WebArgTLVType : ushort 4 { 5 InitialURL = 0x1, 6 CallbackUrl = 0x3, 7 CallbackableUrl = 0x4, 8 ApplicationId = 0x5, 9 DocumentPath = 0x6, 10 DocumentKind = 0x7, 11 SystemDataId = 0x8, 12 ShareStartPage = 0x9, 13 Whitelist = 0xA, 14 NewsFlag = 0xB, 15 UserID = 0xE, 16 AlbumEntry0 = 0xF, 17 ScreenShotEnabled = 0x10, 18 EcClientCertEnabled = 0x11, 19 PlayReportEnabled = 0x13, 20 UnknownFlag0x14 = 0x14, 21 UnknownFlag0x15 = 0x15, 22 BootDisplayKind = 0x17, 23 BackgroundKind = 0x18, 24 FooterEnabled = 0x19, 25 PointerEnabled = 0x1A, 26 LeftStickMode = 0x1B, 27 KeyRepeatFrame1 = 0x1C, 28 KeyRepeatFrame2 = 0x1D, 29 BootAsMediaPlayerInverted = 0x1E, 30 DisplayUrlKind = 0x1F, 31 BootAsMediaPlayer = 0x21, 32 ShopJumpEnabled = 0x22, 33 MediaAutoPlayEnabled = 0x23, 34 LobbyParameter = 0x24, 35 ApplicationAlbumEntry = 0x26, 36 JsExtensionEnabled = 0x27, 37 AdditionalCommentText = 0x28, 38 TouchEnabledOnContents = 0x29, 39 UserAgentAdditionalString = 0x2A, 40 AdditionalMediaData0 = 0x2B, 41 MediaPlayerAutoCloseEnabled = 0x2C, 42 PageCacheEnabled = 0x2D, 43 WebAudioEnabled = 0x2E, 44 FooterFixedKind = 0x32, 45 PageFadeEnabled = 0x33, 46 MediaCreatorApplicationRatingAge = 0x34, 47 BootLoadingIconEnabled = 0x35, 48 PageScrollIndicatorEnabled = 0x36, 49 MediaPlayerSpeedControlEnabled = 0x37, 50 AlbumEntry1 = 0x38, 51 AlbumEntry2 = 0x39, 52 AlbumEntry3 = 0x3A, 53 AdditionalMediaData1 = 0x3B, 54 AdditionalMediaData2 = 0x3C, 55 AdditionalMediaData3 = 0x3D, 56 BootFooterButton = 0x3E, 57 OverrideWebAudioVolume = 0x3F, 58 OverrideMediaAudioVolume = 0x40, 59 BootMode = 0x41, 60 MediaPlayerUiEnabled = 0x43, 61 } 62 }